Class UpdateShadowRequest
- java.lang.Object
-
- software.amazon.awssdk.iot.iotshadow.model.UpdateShadowRequest
-
public class UpdateShadowRequest extends Object
Data needed to make an UpdateShadow request.
-
-
Field Summary
Fields Modifier and Type Field Description String
clientToken
Optional.ShadowState
state
Requested changes to the shadow state.String
thingName
Aws IoT thing to update the (classic) shadow of.Integer
version
(Optional) The Device Shadow service processes the update only if the specified version matches the latest version.
-
Constructor Summary
Constructors Constructor Description UpdateShadowRequest()
-
-
-
Field Detail
-
thingName
public String thingName
Aws IoT thing to update the (classic) shadow of.
-
clientToken
public String clientToken
Optional. A client token used to correlate requests and responses. Enter an arbitrary value here and it is reflected in the response.
-
state
public ShadowState state
Requested changes to the shadow state. Updates affect only the fields specified.
-
version
public Integer version
(Optional) The Device Shadow service processes the update only if the specified version matches the latest version.
-
-