Struct rusoto_emr::StepTimeline[][src]

pub struct StepTimeline {
    pub creation_date_time: Option<f64>,
    pub end_date_time: Option<f64>,
    pub start_date_time: Option<f64>,
}

The timeline of the cluster step lifecycle.

Fields

The date and time when the cluster step was created.

The date and time when the cluster step execution completed or failed.

The date and time when the cluster step execution started.

Trait Implementations

impl Default for StepTimeline
[src]

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

impl Debug for StepTimeline
[src]

Formats the value using the given formatter. Read more

impl Clone for StepTimeline
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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