Class: Aws::IoT::Types::DeprecateThingTypeRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iot/types.rb

Overview

Note:

When making an API call, you may pass DeprecateThingTypeRequest data as a hash:

{
  thing_type_name: "ThingTypeName", # required
  undo_deprecate: false,
}

The input for the DeprecateThingType operation.

Instance Attribute Summary collapse

Instance Attribute Details

#thing_type_nameString

The name of the thing type to deprecate.



3614
3615
3616
3617
3618
# File 'lib/aws-sdk-iot/types.rb', line 3614

class DeprecateThingTypeRequest < Struct.new(
  :thing_type_name,
  :undo_deprecate)
  include Aws::Structure
end

#undo_deprecateBoolean

Whether to undeprecate a deprecated thing type. If true, the thing type will not be deprecated anymore and you can associate it with things.



3614
3615
3616
3617
3618
# File 'lib/aws-sdk-iot/types.rb', line 3614

class DeprecateThingTypeRequest < Struct.new(
  :thing_type_name,
  :undo_deprecate)
  include Aws::Structure
end