Struct rusoto_batch::AttemptDetail [] [src]

pub struct AttemptDetail {
    pub container: Option<AttemptContainerDetail>,
    pub started_at: Option<i64>,
    pub status_reason: Option<String>,
    pub stopped_at: Option<i64>,
}

An object representing a job attempt.

Fields

Details about the container in this job attempt.

The Unix timestamp for when the attempt was started (when the task transitioned from the PENDING state to the RUNNING state).

A short, human-readable string to provide additional details about the current status of the job attempt.

The Unix timestamp for when the attempt was stopped (when the task transitioned from the RUNNING state to the STOPPED state).

Trait Implementations

impl Default for AttemptDetail
[src]

[src]

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

impl Debug for AttemptDetail
[src]

[src]

Formats the value using the given formatter.

impl Clone for AttemptDetail
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more