Class UpdateShadowResponse
- java.lang.Object
-
- software.amazon.awssdk.iot.iotshadow.model.UpdateShadowResponse
-
public class UpdateShadowResponse extends Object
Response payload to an UpdateShadow request.
-
-
Field Summary
Fields Modifier and Type Field Description String
clientToken
An opaque token used to correlate requests and responses.ShadowMetadata
metadata
Contains the timestamps for each attribute in the desired and reported sections so that you can determine when the state was updated.ShadowState
state
Updated device shadow state.Timestamp
timestamp
The time the response was generated by AWS IoT.Integer
version
The current version of the document for the device's shadow shared in AWS IoT.
-
Constructor Summary
Constructors Constructor Description UpdateShadowResponse()
-
-
-
Field Detail
-
clientToken
public String clientToken
An opaque token used to correlate requests and responses. Present only if a client token was used in the request.
-
state
public ShadowState state
Updated device shadow state.
-
metadata
public ShadowMetadata metadata
Contains the timestamps for each attribute in the desired and reported sections so that you can determine when the state was updated.
-
timestamp
public Timestamp timestamp
The time the response was generated by AWS IoT.
-
version
public Integer version
The current version of the document for the device's shadow shared in AWS IoT. It is increased by one over the previous version of the document.
-
-