Struct aws_sdk_iot::model::ThingDocument
source · #[non_exhaustive]pub struct ThingDocument { /* private fields */ }
Expand description
The thing search index document.
Implementations§
source§impl ThingDocument
impl ThingDocument
sourcepub fn thing_name(&self) -> Option<&str>
pub fn thing_name(&self) -> Option<&str>
The thing name.
sourcepub fn thing_type_name(&self) -> Option<&str>
pub fn thing_type_name(&self) -> Option<&str>
The thing type name.
sourcepub fn thing_group_names(&self) -> Option<&[String]>
pub fn thing_group_names(&self) -> Option<&[String]>
Thing group names.
sourcepub fn shadow(&self) -> Option<&str>
pub fn shadow(&self) -> Option<&str>
The unnamed shadow and named shadow.
For more information about shadows, see IoT Device Shadow service.
sourcepub fn device_defender(&self) -> Option<&str>
pub fn device_defender(&self) -> Option<&str>
Contains Device Defender data.
For more information about Device Defender, see Device Defender.
sourcepub fn connectivity(&self) -> Option<&ThingConnectivity>
pub fn connectivity(&self) -> Option<&ThingConnectivity>
Indicates whether the thing is connected to the Amazon Web Services IoT Core service.
source§impl ThingDocument
impl ThingDocument
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ThingDocument
.
Trait Implementations§
source§impl Clone for ThingDocument
impl Clone for ThingDocument
source§fn clone(&self) -> ThingDocument
fn clone(&self) -> ThingDocument
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 ThingDocument
impl Debug for ThingDocument
source§impl PartialEq<ThingDocument> for ThingDocument
impl PartialEq<ThingDocument> for ThingDocument
source§fn eq(&self, other: &ThingDocument) -> bool
fn eq(&self, other: &ThingDocument) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.