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>,
}Expand description
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§
Source§impl Clone for AttemptContainerDetail
impl Clone for AttemptContainerDetail
Source§fn clone(&self) -> AttemptContainerDetail
fn clone(&self) -> AttemptContainerDetail
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more