AttemptContainerDetail
public struct AttemptContainerDetail : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The Amazon Resource Name (ARN) of the Amazon ECS container instance that hosts the job attempt.
Declaration
Swift
public let containerInstanceArn: String?
-
The exit code for the job attempt. A non-zero exit code is considered a failure.
Declaration
Swift
public let exitCode: Int?
-
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.
Declaration
Swift
public let logStreamName: String?
-
The network interfaces associated with the job attempt.
Declaration
Swift
public let networkInterfaces: [NetworkInterface]?
-
A short (255 max characters) human-readable string to provide additional details about a running or stopped container.
Declaration
Swift
public let reason: 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.
Declaration
Swift
public let taskArn: String?
-
Undocumented
Declaration
Swift
public init(containerInstanceArn: String? = nil, exitCode: Int? = nil, logStreamName: String? = nil, networkInterfaces: [NetworkInterface]? = nil, reason: String? = nil, taskArn: String? = nil)