Class ShadowState
- java.lang.Object
-
- software.amazon.awssdk.iot.iotshadow.model.ShadowState
-
public class ShadowState extends Object
(Potentially partial) state of an AWS IoT thing's shadow.
-
-
Field Summary
Fields Modifier and Type Field Description HashMap<String,Object>
desired
The desired shadow state (from external services and devices).boolean
desiredIsNullable
If set to true, then desired can be set to null.HashMap<String,Object>
reported
The (last) reported shadow state from the device.boolean
reportedIsNullable
If set to true, then reported can be set to null.
-
Constructor Summary
Constructors Constructor Description ShadowState()
-
-
-
Field Detail
-
desired
public HashMap<String,Object> desired
The desired shadow state (from external services and devices).
-
desiredIsNullable
public transient boolean desiredIsNullable
If set to true, then desired can be set to null.
-
reportedIsNullable
public transient boolean reportedIsNullable
If set to true, then reported can be set to null.
-
-