Class GetShadowResponse
- java.lang.Object
-
- software.amazon.awssdk.iot.iotshadow.model.GetShadowResponse
-
public class GetShadowResponse extends Object
Response payload to a GetShadow 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 of the state.ShadowStateWithDelta
state
The (classic) shadow state of the AWS IoT thing.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 GetShadowResponse()
-
-
-
Field Detail
-
clientToken
public String clientToken
An opaque token used to correlate requests and responses.
-
state
public ShadowStateWithDelta state
The (classic) shadow state of the AWS IoT thing.
-
metadata
public ShadowMetadata metadata
Contains the timestamps for each attribute in the desired and reported sections of the state.
-
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.
-
-