Class: Aws::IoTDataPlane::Types::UpdateThingShadowRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTDataPlane::Types::UpdateThingShadowRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotdataplane/types.rb
Overview
Note:
When making an API call, you may pass UpdateThingShadowRequest data as a hash:
{
thing_name: "ThingName", # required
payload: "data", # required
}
The input for the UpdateThingShadow operation.
Instance Attribute Summary collapse
-
#payload ⇒ String
The state information, in JSON format.
-
#thing_name ⇒ String
The name of the thing.
Instance Attribute Details
#payload ⇒ String
The state information, in JSON format.
117 118 119 120 121 |
# File 'lib/aws-sdk-iotdataplane/types.rb', line 117 class UpdateThingShadowRequest < Struct.new( :thing_name, :payload) include Aws::Structure end |
#thing_name ⇒ String
The name of the thing.
117 118 119 120 121 |
# File 'lib/aws-sdk-iotdataplane/types.rb', line 117 class UpdateThingShadowRequest < Struct.new( :thing_name, :payload) include Aws::Structure end |