[][src]Struct rusoto_ec2::InstanceStatus

pub struct InstanceStatus {
    pub availability_zone: Option<String>,
    pub events: Option<Vec<InstanceStatusEvent>>,
    pub instance_id: Option<String>,
    pub instance_state: Option<InstanceState>,
    pub instance_status: Option<InstanceStatusSummary>,
    pub outpost_arn: Option<String>,
    pub system_status: Option<InstanceStatusSummary>,
}

Describes the status of an instance.

Fields

availability_zone: Option<String>

The Availability Zone of the instance.

events: Option<Vec<InstanceStatusEvent>>

Any scheduled events associated with the instance.

instance_id: Option<String>

The ID of the instance.

instance_state: Option<InstanceState>

The intended state of the instance. DescribeInstanceStatus requires that an instance be in the running state.

instance_status: Option<InstanceStatusSummary>

Reports impaired functionality that stems from issues internal to the instance, such as impaired reachability.

outpost_arn: Option<String>

The Amazon Resource Name (ARN) of the Outpost.

system_status: Option<InstanceStatusSummary>

Reports impaired functionality that stems from issues related to the systems that support an instance, such as hardware failures and network connectivity problems.

Trait Implementations

impl Clone for InstanceStatus[src]

impl Debug for InstanceStatus[src]

impl Default for InstanceStatus[src]

impl PartialEq<InstanceStatus> for InstanceStatus[src]

impl StructuralPartialEq for InstanceStatus[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> From<T> for T[src]

impl<T> Instrument 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.