Struct aws_sdk_iot::input::UpdateThingInput [−][src]
#[non_exhaustive]pub struct UpdateThingInput {
pub thing_name: Option<String>,
pub thing_type_name: Option<String>,
pub attribute_payload: Option<AttributePayload>,
pub expected_version: Option<i64>,
pub remove_thing_type: bool,
}
Expand description
The input for the UpdateThing operation.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.thing_name: Option<String>
The name of the thing to update.
You can't change a thing's name. To change a thing's name, you must create a new thing, give it the new name, and then delete the old thing.
thing_type_name: Option<String>
The name of the thing type.
attribute_payload: Option<AttributePayload>
A list of thing attributes, a JSON string containing name-value pairs. For example:
{\"attributes\":{\"name1\":\"value2\"}}
This data is used to add new attributes or update existing attributes.
expected_version: Option<i64>
The expected version of the thing record in the registry. If the version of the
record in the registry does not match the expected version specified in the request, the
UpdateThing
request is rejected with a
VersionConflictException
.
remove_thing_type: bool
Remove a thing type association. If true, the association is removed.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateThing, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateThing, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateThing
>
Creates a new builder-style object to manufacture UpdateThingInput
The name of the thing to update.
You can't change a thing's name. To change a thing's name, you must create a new thing, give it the new name, and then delete the old thing.
The name of the thing type.
A list of thing attributes, a JSON string containing name-value pairs. For example:
{\"attributes\":{\"name1\":\"value2\"}}
This data is used to add new attributes or update existing attributes.
The expected version of the thing record in the registry. If the version of the
record in the registry does not match the expected version specified in the request, the
UpdateThing
request is rejected with a
VersionConflictException
.
Remove a thing type association. If true, the association is removed.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for UpdateThingInput
impl Send for UpdateThingInput
impl Sync for UpdateThingInput
impl Unpin for UpdateThingInput
impl UnwindSafe for UpdateThingInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more