#[non_exhaustive]pub struct DescribeDeviceOutput {
pub device_arn: Option<String>,
pub device_name: Option<String>,
pub description: Option<String>,
pub device_fleet_name: Option<String>,
pub iot_thing_name: Option<String>,
pub registration_time: Option<DateTime>,
pub latest_heartbeat: Option<DateTime>,
pub models: Option<Vec<EdgeModel>>,
pub max_models: i32,
pub next_token: Option<String>,
pub agent_version: Option<String>,
/* private fields */
}
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.device_arn: Option<String>
The Amazon Resource Name (ARN) of the device.
device_name: Option<String>
The unique identifier of the device.
description: Option<String>
A description of the device.
device_fleet_name: Option<String>
The name of the fleet the device belongs to.
iot_thing_name: Option<String>
The Amazon Web Services Internet of Things (IoT) object thing name associated with the device.
registration_time: Option<DateTime>
The timestamp of the last registration or de-reregistration.
latest_heartbeat: Option<DateTime>
The last heartbeat received from the device.
models: Option<Vec<EdgeModel>>
Models on the device.
max_models: i32
The maximum number of models.
next_token: Option<String>
The response from the last list when returning a list large enough to need tokening.
agent_version: Option<String>
Edge Manager agent version.
Implementations§
source§impl DescribeDeviceOutput
impl DescribeDeviceOutput
sourcepub fn device_arn(&self) -> Option<&str>
pub fn device_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the device.
sourcepub fn device_name(&self) -> Option<&str>
pub fn device_name(&self) -> Option<&str>
The unique identifier of the device.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the device.
sourcepub fn device_fleet_name(&self) -> Option<&str>
pub fn device_fleet_name(&self) -> Option<&str>
The name of the fleet the device belongs to.
sourcepub fn iot_thing_name(&self) -> Option<&str>
pub fn iot_thing_name(&self) -> Option<&str>
The Amazon Web Services Internet of Things (IoT) object thing name associated with the device.
sourcepub fn registration_time(&self) -> Option<&DateTime>
pub fn registration_time(&self) -> Option<&DateTime>
The timestamp of the last registration or de-reregistration.
sourcepub fn latest_heartbeat(&self) -> Option<&DateTime>
pub fn latest_heartbeat(&self) -> Option<&DateTime>
The last heartbeat received from the device.
sourcepub fn max_models(&self) -> i32
pub fn max_models(&self) -> i32
The maximum number of models.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The response from the last list when returning a list large enough to need tokening.
sourcepub fn agent_version(&self) -> Option<&str>
pub fn agent_version(&self) -> Option<&str>
Edge Manager agent version.
source§impl DescribeDeviceOutput
impl DescribeDeviceOutput
sourcepub fn builder() -> DescribeDeviceOutputBuilder
pub fn builder() -> DescribeDeviceOutputBuilder
Creates a new builder-style object to manufacture DescribeDeviceOutput
.
Trait Implementations§
source§impl Clone for DescribeDeviceOutput
impl Clone for DescribeDeviceOutput
source§fn clone(&self) -> DescribeDeviceOutput
fn clone(&self) -> DescribeDeviceOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeDeviceOutput
impl Debug for DescribeDeviceOutput
source§impl PartialEq<DescribeDeviceOutput> for DescribeDeviceOutput
impl PartialEq<DescribeDeviceOutput> for DescribeDeviceOutput
source§fn eq(&self, other: &DescribeDeviceOutput) -> bool
fn eq(&self, other: &DescribeDeviceOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeDeviceOutput
impl RequestId for DescribeDeviceOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.