Struct rusoto_emr::InstanceTimeline[][src]

pub struct InstanceTimeline {
    pub creation_date_time: Option<f64>,
    pub end_date_time: Option<f64>,
    pub ready_date_time: Option<f64>,
}

The timeline of the instance lifecycle.

Fields

The creation date and time of the instance.

The date and time when the instance was terminated.

The date and time when the instance was ready to perform tasks.

Trait Implementations

impl Default for InstanceTimeline
[src]

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

impl Debug for InstanceTimeline
[src]

Formats the value using the given formatter. Read more

impl Clone for InstanceTimeline
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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