Struct rusoto_emr::ClusterStatus[][src]

pub struct ClusterStatus {
    pub state: Option<String>,
    pub state_change_reason: Option<ClusterStateChangeReason>,
    pub timeline: Option<ClusterTimeline>,
}

The detailed status of the cluster.

Fields

The current state of the cluster.

The reason for the cluster status change.

A timeline that represents the status of a cluster over the lifetime of the cluster.

Trait Implementations

impl Default for ClusterStatus
[src]

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

impl Debug for ClusterStatus
[src]

Formats the value using the given formatter. Read more

impl Clone for ClusterStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ClusterStatus
[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