Class: Aws::IoT::Types::ThingTypeProperties

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 ThingTypeProperties data as a hash:

{
  thing_type_description: "ThingTypeDescription",
  searchable_attributes: ["AttributeName"],
}

The ThingTypeProperties contains information about the thing type including: a thing type description, and a list of searchable thing attribute names.

Instance Attribute Summary collapse

Instance Attribute Details

#searchable_attributesArray<String>

A list of searchable thing attribute names.



10244
10245
10246
10247
10248
# File 'lib/aws-sdk-iot/types.rb', line 10244

class ThingTypeProperties < Struct.new(
  :thing_type_description,
  :searchable_attributes)
  include Aws::Structure
end

#thing_type_descriptionString

The description of the thing type.



10244
10245
10246
10247
10248
# File 'lib/aws-sdk-iot/types.rb', line 10244

class ThingTypeProperties < Struct.new(
  :thing_type_description,
  :searchable_attributes)
  include Aws::Structure
end