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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#thing_type_nameString

The name of the thing type to deprecate.

Returns:

  • (String)


4493
4494
4495
4496
4497
4498
# File 'lib/aws-sdk-iot/types.rb', line 4493

class DeprecateThingTypeRequest < Struct.new(
  :thing_type_name,
  :undo_deprecate)
  SENSITIVE = []
  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.

Returns:

  • (Boolean)


4493
4494
4495
4496
4497
4498
# File 'lib/aws-sdk-iot/types.rb', line 4493

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