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

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

Instance Attribute Details

#searchable_attributesArray<String>

A list of searchable thing attribute names.

Returns:

  • (Array<String>)


15037
15038
15039
15040
15041
15042
# File 'lib/aws-sdk-iot/types.rb', line 15037

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

#thing_type_descriptionString

The description of the thing type.

Returns:

  • (String)


15037
15038
15039
15040
15041
15042
# File 'lib/aws-sdk-iot/types.rb', line 15037

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