Struct rusoto_emr::InstanceStatus[][src]

pub struct InstanceStatus {
    pub state: Option<String>,
    pub state_change_reason: Option<InstanceStateChangeReason>,
    pub timeline: Option<InstanceTimeline>,
}

The instance status details.

Fields

The current state of the instance.

The details of the status change reason for the instance.

The timeline of the instance status over time.

Trait Implementations

impl Default for InstanceStatus
[src]

Returns the "default value" for a type. Read more

impl Debug for InstanceStatus
[src]

Formats the value using the given formatter. Read more

impl Clone for InstanceStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for InstanceStatus
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations