Struct aws_sdk_iot::input::UpdateThingInput
source · #[non_exhaustive]pub struct UpdateThingInput { /* private fields */ }
Expand description
The input for the UpdateThing operation.
Implementations§
source§impl UpdateThingInput
impl UpdateThingInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateThing, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateThing, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateThing
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateThingInput
.
source§impl UpdateThingInput
impl UpdateThingInput
sourcepub fn thing_name(&self) -> Option<&str>
pub fn thing_name(&self) -> Option<&str>
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.
sourcepub fn thing_type_name(&self) -> Option<&str>
pub fn thing_type_name(&self) -> Option<&str>
The name of the thing type.
sourcepub fn attribute_payload(&self) -> Option<&AttributePayload>
pub fn attribute_payload(&self) -> 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.
sourcepub fn expected_version(&self) -> Option<i64>
pub fn expected_version(&self) -> 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
.
sourcepub fn remove_thing_type(&self) -> bool
pub fn remove_thing_type(&self) -> bool
Remove a thing type association. If true, the association is removed.
Trait Implementations§
source§impl Clone for UpdateThingInput
impl Clone for UpdateThingInput
source§fn clone(&self) -> UpdateThingInput
fn clone(&self) -> UpdateThingInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateThingInput
impl Debug for UpdateThingInput
source§impl PartialEq<UpdateThingInput> for UpdateThingInput
impl PartialEq<UpdateThingInput> for UpdateThingInput
source§fn eq(&self, other: &UpdateThingInput) -> bool
fn eq(&self, other: &UpdateThingInput) -> bool
self
and other
values to be equal, and is used
by ==
.