[][src]Struct rusoto_iotthingsgraph::SystemInstanceSummary

pub struct SystemInstanceSummary {
    pub arn: Option<String>,
    pub created_at: Option<f64>,
    pub greengrass_group_id: Option<String>,
    pub greengrass_group_name: Option<String>,
    pub greengrass_group_version_id: Option<String>,
    pub id: Option<String>,
    pub status: Option<String>,
    pub target: Option<String>,
    pub updated_at: Option<f64>,
}

An object that contains summary information about a system instance.

Fields

arn: Option<String>

The ARN of the system instance.

created_at: Option<f64>

The date when the system instance was created.

greengrass_group_id: Option<String>

The ID of the Greengrass group where the system instance is deployed.

greengrass_group_name: Option<String>

The ID of the Greengrass group where the system instance is deployed.

greengrass_group_version_id: Option<String>

The version of the Greengrass group where the system instance is deployed.

id: Option<String>

The ID of the system instance.

status: Option<String>

The status of the system instance.

target: Option<String>

The target of the system instance.

updated_at: Option<f64>

The date and time when the system instance was last updated.

Trait Implementations

impl Clone for SystemInstanceSummary[src]

impl Debug for SystemInstanceSummary[src]

impl Default for SystemInstanceSummary[src]

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

impl PartialEq<SystemInstanceSummary> for SystemInstanceSummary[src]

impl StructuralPartialEq for SystemInstanceSummary[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.