Struct aws_sdk_iot::types::ThingAttribute
source · #[non_exhaustive]pub struct ThingAttribute {
pub thing_name: Option<String>,
pub thing_type_name: Option<String>,
pub thing_arn: Option<String>,
pub attributes: Option<HashMap<String, String>>,
pub version: i64,
}
Expand description
The properties of the thing, including thing name, thing type name, and a list of thing attributes.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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.
thing_type_name: Option<String>
The name of the thing type, if the thing has been associated with a type.
thing_arn: Option<String>
The thing ARN.
attributes: Option<HashMap<String, String>>
A list of thing attributes which are name-value pairs.
version: i64
The version of the thing record in the registry.
Implementations§
source§impl ThingAttribute
impl ThingAttribute
sourcepub fn thing_name(&self) -> Option<&str>
pub fn thing_name(&self) -> Option<&str>
The name of the thing.
sourcepub fn thing_type_name(&self) -> Option<&str>
pub fn thing_type_name(&self) -> Option<&str>
The name of the thing type, if the thing has been associated with a type.
source§impl ThingAttribute
impl ThingAttribute
sourcepub fn builder() -> ThingAttributeBuilder
pub fn builder() -> ThingAttributeBuilder
Creates a new builder-style object to manufacture ThingAttribute
.
Trait Implementations§
source§impl Clone for ThingAttribute
impl Clone for ThingAttribute
source§fn clone(&self) -> ThingAttribute
fn clone(&self) -> ThingAttribute
Returns a copy 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 ThingAttribute
impl Debug for ThingAttribute
source§impl PartialEq for ThingAttribute
impl PartialEq for ThingAttribute
source§fn eq(&self, other: &ThingAttribute) -> bool
fn eq(&self, other: &ThingAttribute) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ThingAttribute
Auto Trait Implementations§
impl RefUnwindSafe for ThingAttribute
impl Send for ThingAttribute
impl Sync for ThingAttribute
impl Unpin for ThingAttribute
impl UnwindSafe for ThingAttribute
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.