Struct aws_sdk_iot::operation::describe_thing::DescribeThingOutput
source · #[non_exhaustive]pub struct DescribeThingOutput {
pub default_client_id: Option<String>,
pub thing_name: Option<String>,
pub thing_id: Option<String>,
pub thing_arn: Option<String>,
pub thing_type_name: Option<String>,
pub attributes: Option<HashMap<String, String>>,
pub version: i64,
pub billing_group_name: Option<String>,
/* private fields */
}
Expand description
The output from the DescribeThing 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.default_client_id: Option<String>
The default MQTT client ID. For a typical device, the thing name is also used as the default MQTT client ID. Although we don’t require a mapping between a thing's registry name and its use of MQTT client IDs, certificates, or shadow state, we recommend that you choose a thing name and use it as the MQTT client ID for the registry and the Device Shadow service.
This lets you better organize your IoT fleet without removing the flexibility of the underlying device certificate model or shadows.
thing_name: Option<String>
The name of the thing.
thing_id: Option<String>
The ID of the thing to describe.
thing_arn: Option<String>
The ARN of the thing to describe.
thing_type_name: Option<String>
The thing type name.
attributes: Option<HashMap<String, String>>
The thing attributes.
version: i64
The current version of the thing record in the registry.
To avoid unintentional changes to the information in the registry, you can pass the version information in the expectedVersion
parameter of the UpdateThing
and DeleteThing
calls.
billing_group_name: Option<String>
The name of the billing group the thing belongs to.
Implementations§
source§impl DescribeThingOutput
impl DescribeThingOutput
sourcepub fn default_client_id(&self) -> Option<&str>
pub fn default_client_id(&self) -> Option<&str>
The default MQTT client ID. For a typical device, the thing name is also used as the default MQTT client ID. Although we don’t require a mapping between a thing's registry name and its use of MQTT client IDs, certificates, or shadow state, we recommend that you choose a thing name and use it as the MQTT client ID for the registry and the Device Shadow service.
This lets you better organize your IoT fleet without removing the flexibility of the underlying device certificate model or shadows.
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 thing type name.
sourcepub fn version(&self) -> i64
pub fn version(&self) -> i64
The current version of the thing record in the registry.
To avoid unintentional changes to the information in the registry, you can pass the version information in the expectedVersion
parameter of the UpdateThing
and DeleteThing
calls.
sourcepub fn billing_group_name(&self) -> Option<&str>
pub fn billing_group_name(&self) -> Option<&str>
The name of the billing group the thing belongs to.
source§impl DescribeThingOutput
impl DescribeThingOutput
sourcepub fn builder() -> DescribeThingOutputBuilder
pub fn builder() -> DescribeThingOutputBuilder
Creates a new builder-style object to manufacture DescribeThingOutput
.
Trait Implementations§
source§impl Clone for DescribeThingOutput
impl Clone for DescribeThingOutput
source§fn clone(&self) -> DescribeThingOutput
fn clone(&self) -> DescribeThingOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeThingOutput
impl Debug for DescribeThingOutput
source§impl PartialEq for DescribeThingOutput
impl PartialEq for DescribeThingOutput
source§fn eq(&self, other: &DescribeThingOutput) -> bool
fn eq(&self, other: &DescribeThingOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeThingOutput
impl RequestId for DescribeThingOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.