[][src]Struct rusoto_sagemaker::DeviceSummary

pub struct DeviceSummary {
    pub description: Option<String>,
    pub device_arn: String,
    pub device_fleet_name: Option<String>,
    pub device_name: String,
    pub iot_thing_name: Option<String>,
    pub latest_heartbeat: Option<f64>,
    pub models: Option<Vec<EdgeModelSummary>>,
    pub registration_time: Option<f64>,
}

Summary of the device.

Fields

description: Option<String>

A description of the device.

device_arn: String

Amazon Resource Name (ARN) of the device.

device_fleet_name: Option<String>

The name of the fleet the device belongs to.

device_name: String

The unique identifier of the device.

iot_thing_name: Option<String>

The AWS Internet of Things (IoT) object thing name associated with the device..

latest_heartbeat: Option<f64>

The last heartbeat received from the device.

models: Option<Vec<EdgeModelSummary>>

Models on the device.

registration_time: Option<f64>

The timestamp of the last registration or de-reregistration.

Trait Implementations

impl Clone for DeviceSummary[src]

impl Debug for DeviceSummary[src]

impl Default for DeviceSummary[src]

impl<'de> Deserialize<'de> for DeviceSummary[src]

impl PartialEq<DeviceSummary> for DeviceSummary[src]

impl StructuralPartialEq for DeviceSummary[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.