pub struct UpdateThingRequest {
pub attribute_payload: Option<AttributePayload>,
pub expected_version: Option<i64>,
pub remove_thing_type: Option<bool>,
pub thing_name: String,
pub thing_type_name: Option<String>,
}Expand description
The input for the UpdateThing operation.
Fields§
§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: Option<bool>Remove a thing type association. If true, the association is removed.
thing_name: StringThe 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.
Trait Implementations§
Source§impl Clone for UpdateThingRequest
impl Clone for UpdateThingRequest
Source§fn clone(&self) -> UpdateThingRequest
fn clone(&self) -> UpdateThingRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UpdateThingRequest
impl Debug for UpdateThingRequest
Source§impl Default for UpdateThingRequest
impl Default for UpdateThingRequest
Source§fn default() -> UpdateThingRequest
fn default() -> UpdateThingRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateThingRequest
impl PartialEq for UpdateThingRequest
Source§impl Serialize for UpdateThingRequest
impl Serialize for UpdateThingRequest
impl StructuralPartialEq for UpdateThingRequest
Auto Trait Implementations§
impl Freeze for UpdateThingRequest
impl RefUnwindSafe for UpdateThingRequest
impl Send for UpdateThingRequest
impl Sync for UpdateThingRequest
impl Unpin for UpdateThingRequest
impl UnwindSafe for UpdateThingRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more