[][src]Struct rusoto_batch::AttemptContainerDetail

pub struct AttemptContainerDetail {
    pub container_instance_arn: Option<String>,
    pub exit_code: Option<i64>,
    pub log_stream_name: Option<String>,
    pub network_interfaces: Option<Vec<NetworkInterface>>,
    pub reason: Option<String>,
    pub task_arn: Option<String>,
}

An object representing the details of a container that is part of a job attempt.

Fields

container_instance_arn: Option<String>

The Amazon Resource Name (ARN) of the Amazon ECS container instance that hosts the job attempt.

exit_code: Option<i64>

The exit code for the job attempt. A non-zero exit code is considered a failure.

log_stream_name: Option<String>

The name of the CloudWatch Logs log stream associated with the container. The log group for AWS Batch jobs is /aws/batch/job. Each container attempt receives a log stream name when they reach the RUNNING status.

network_interfaces: Option<Vec<NetworkInterface>>

The network interfaces associated with the job attempt.

reason: Option<String>

A short (255 max characters) human-readable string to provide additional details about a running or stopped container.

task_arn: Option<String>

The Amazon Resource Name (ARN) of the Amazon ECS task that is associated with the job attempt. Each container attempt receives a task ARN when they reach the STARTING status.

Trait Implementations

impl Clone for AttemptContainerDetail[src]

impl Debug for AttemptContainerDetail[src]

impl Default for AttemptContainerDetail[src]

impl<'de> Deserialize<'de> for AttemptContainerDetail[src]

impl PartialEq<AttemptContainerDetail> for AttemptContainerDetail[src]

impl StructuralPartialEq for AttemptContainerDetail[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.