Struct rusoto_emr::StepExecutionStatusDetail[][src]

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

The execution state of a step.

Fields

The creation date and time of the step.

The completion date and time of the step.

A description of the step's current state.

The start date and time of the step.

The state of the step.

Trait Implementations

impl Default for StepExecutionStatusDetail
[src]

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

impl Debug for StepExecutionStatusDetail
[src]

Formats the value using the given formatter. Read more

impl Clone for StepExecutionStatusDetail
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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