Class: Aws::IoT::Types::DeprecateThingTypeRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::DeprecateThingTypeRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
The input for the DeprecateThingType operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#thing_type_name ⇒ String
The name of the thing type to deprecate.
-
#undo_deprecate ⇒ Boolean
Whether to undeprecate a deprecated thing type.
Instance Attribute Details
#thing_type_name ⇒ String
The name of the thing type to deprecate.
5411 5412 5413 5414 5415 5416 |
# File 'lib/aws-sdk-iot/types.rb', line 5411 class DeprecateThingTypeRequest < Struct.new( :thing_type_name, :undo_deprecate) SENSITIVE = [] include Aws::Structure end |
#undo_deprecate ⇒ Boolean
Whether to undeprecate a deprecated thing type. If true, the thing type will not be deprecated anymore and you can associate it with things.
5411 5412 5413 5414 5415 5416 |
# File 'lib/aws-sdk-iot/types.rb', line 5411 class DeprecateThingTypeRequest < Struct.new( :thing_type_name, :undo_deprecate) SENSITIVE = [] include Aws::Structure end |