Class UpdateNamedShadowRequest
- java.lang.Object
-
- software.amazon.awssdk.iot.iotshadow.model.UpdateNamedShadowRequest
-
public class UpdateNamedShadowRequest extends Object
Data needed to make an UpdateNamedShadow request.
-
-
Field Summary
Fields Modifier and Type Field Description String
clientToken
Optional.String
shadowName
Name of the shadow to update.ShadowState
state
Requested changes to shadow state.String
thingName
Aws IoT thing to update a named shadow of.Integer
version
(Optional) The Device Shadow service applies the update only if the specified version matches the latest version.
-
Constructor Summary
Constructors Constructor Description UpdateNamedShadowRequest()
-
-
-
Field Detail
-
thingName
public String thingName
Aws IoT thing to update a named shadow of.
-
shadowName
public String shadowName
Name of the shadow to update.
-
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 shadow state. Updates affect only the fields specified.
-
version
public Integer version
(Optional) The Device Shadow service applies the update only if the specified version matches the latest version.
-
-