[][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 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.

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 PartialEq<InstanceStatus> for InstanceStatus[src]

impl Default for InstanceStatus[src]

impl Clone for InstanceStatus[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for InstanceStatus[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self