Class: Aws::IoT::Types::CreateThingTypeRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::CreateThingTypeRequest
- Defined in:
- gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
Overview
The input for the CreateThingType operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#tags ⇒ Array<Types::Tag>
Metadata which can be used to manage the thing type.
-
#thing_type_name ⇒ String
The name of the thing type.
-
#thing_type_properties ⇒ Types::ThingTypeProperties
The ThingTypeProperties for the thing type to create.
Instance Attribute Details
#tags ⇒ Array<Types::Tag>
Metadata which can be used to manage the thing type.
4590 4591 4592 4593 4594 4595 4596 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 4590 class CreateThingTypeRequest < Struct.new( :thing_type_name, :thing_type_properties, :tags) SENSITIVE = [] include Aws::Structure end |
#thing_type_name ⇒ String
The name of the thing type.
4590 4591 4592 4593 4594 4595 4596 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 4590 class CreateThingTypeRequest < Struct.new( :thing_type_name, :thing_type_properties, :tags) SENSITIVE = [] include Aws::Structure end |
#thing_type_properties ⇒ Types::ThingTypeProperties
The ThingTypeProperties for the thing type to create. It contains information about the new thing type including a description, and a list of searchable thing attribute names.
4590 4591 4592 4593 4594 4595 4596 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 4590 class CreateThingTypeRequest < Struct.new( :thing_type_name, :thing_type_properties, :tags) SENSITIVE = [] include Aws::Structure end |