Class: Aws::IoT::Types::ThingGroupProperties

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

{
  thing_group_description: "ThingGroupDescription",
  attribute_payload: {
    attributes: {
      "AttributeName" => "AttributeValue",
    },
    merge: false,
  },
}

Thing group properties.

Instance Attribute Summary collapse

Instance Attribute Details

#attribute_payloadTypes::AttributePayload

The thing group attributes in JSON format.



10121
10122
10123
10124
10125
# File 'lib/aws-sdk-iot/types.rb', line 10121

class ThingGroupProperties < Struct.new(
  :thing_group_description,
  :attribute_payload)
  include Aws::Structure
end

#thing_group_descriptionString

The thing group description.



10121
10122
10123
10124
10125
# File 'lib/aws-sdk-iot/types.rb', line 10121

class ThingGroupProperties < Struct.new(
  :thing_group_description,
  :attribute_payload)
  include Aws::Structure
end