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 time stamp for when the attempt was started (when the attempt transitioned from the STARTING state to the RUNNING state).

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

The Unix time stamp for when the attempt was stopped (when the attempt transitioned from the RUNNING state to a terminal state, such as SUCCEEDED or FAILED).

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. Read more

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

Auto Trait Implementations

impl Send for AttemptDetail

impl Sync for AttemptDetail