Struct rusoto_emr::JobFlowExecutionStatusDetail[][src]

pub struct JobFlowExecutionStatusDetail {
    pub creation_date_time: f64,
    pub end_date_time: Option<f64>,
    pub last_state_change_reason: Option<String>,
    pub ready_date_time: Option<f64>,
    pub start_date_time: Option<f64>,
    pub state: String,
}

Describes the status of the cluster (job flow).

Fields

The creation date and time of the job flow.

The completion date and time of the job flow.

Description of the job flow last changed state.

The date and time when the job flow was ready to start running bootstrap actions.

The start date and time of the job flow.

The state of the job flow.

Trait Implementations

impl Default for JobFlowExecutionStatusDetail
[src]

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

impl Debug for JobFlowExecutionStatusDetail
[src]

Formats the value using the given formatter. Read more

impl Clone for JobFlowExecutionStatusDetail
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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