Class: Aws::IoT::Types::ThingTypeProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::ThingTypeProperties
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
The ThingTypeProperties contains information about the thing type including: a thing type description, and a list of searchable thing attribute names.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#searchable_attributes ⇒ Array<String>
A list of searchable thing attribute names.
-
#thing_type_description ⇒ String
The description of the thing type.
Instance Attribute Details
#searchable_attributes ⇒ Array<String>
A list of searchable thing attribute names.
15274 15275 15276 15277 15278 15279 |
# File 'lib/aws-sdk-iot/types.rb', line 15274 class ThingTypeProperties < Struct.new( :thing_type_description, :searchable_attributes) SENSITIVE = [] include Aws::Structure end |
#thing_type_description ⇒ String
The description of the thing type.
15274 15275 15276 15277 15278 15279 |
# File 'lib/aws-sdk-iot/types.rb', line 15274 class ThingTypeProperties < Struct.new( :thing_type_description, :searchable_attributes) SENSITIVE = [] include Aws::Structure end |