Class: Aws::IoT::Types::AttributePayload
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::AttributePayload
- Defined in:
- gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
Overview
The attribute payload.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attributes ⇒ Hash<String,String>
A JSON string containing up to three key-value pair in JSON format.
-
#merge ⇒ Boolean
Specifies whether the list of attributes provided in the
AttributePayload
is merged with the attributes stored in the registry, instead of overwriting them.
Instance Attribute Details
#attributes ⇒ Hash<String,String>
A JSON string containing up to three key-value pair in JSON format. For example:
{"attributes":{"string1":"string2"}}
730 731 732 733 734 735 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 730 class AttributePayload < Struct.new( :attributes, :merge) SENSITIVE = [] include Aws::Structure end |
#merge ⇒ Boolean
Specifies whether the list of attributes provided in the
AttributePayload
is merged with the attributes stored in the
registry, instead of overwriting them.
To remove an attribute, call UpdateThing
with an empty attribute
value.
merge
attribute is only valid when calling UpdateThing
or
UpdateThingGroup
.
730 731 732 733 734 735 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 730 class AttributePayload < Struct.new( :attributes, :merge) SENSITIVE = [] include Aws::Structure end |