Struct aws_sdk_batch::model::AttemptDetail
source · [−]#[non_exhaustive]pub struct AttemptDetail {
pub container: Option<AttemptContainerDetail>,
pub started_at: i64,
pub stopped_at: i64,
pub status_reason: Option<String>,
}Expand description
An object representing a job attempt.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.container: Option<AttemptContainerDetail>Details about the container in this job attempt.
started_at: i64The Unix timestamp (in milliseconds) for when the attempt was started (when the attempt transitioned from the STARTING state to the RUNNING state).
stopped_at: i64The Unix timestamp (in milliseconds) for when the attempt was stopped (when the attempt transitioned from the RUNNING state to a terminal state, such as SUCCEEDED or FAILED).
status_reason: Option<String>A short, human-readable string to provide additional details about the current status of the job attempt.
Implementations
Details about the container in this job attempt.
The Unix timestamp (in milliseconds) for when the attempt was started (when the attempt transitioned from the STARTING state to the RUNNING state).
The Unix timestamp (in milliseconds) for when the attempt was stopped (when the attempt transitioned from the RUNNING state to a terminal state, such as SUCCEEDED or FAILED).
A short, human-readable string to provide additional details about the current status of the job attempt.
Creates a new builder-style object to manufacture AttemptDetail
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for AttemptDetail
impl Send for AttemptDetail
impl Sync for AttemptDetail
impl Unpin for AttemptDetail
impl UnwindSafe for AttemptDetail
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more