Class: Aws::Batch::Types::EksAttemptContainerDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::EksAttemptContainerDetail
- Defined in:
- gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb
Overview
An object that represents the details for an attempt for a job attempt that an Amazon EKS container runs.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#container_id ⇒ String
The ID for the container.
-
#exit_code ⇒ Integer
The exit code returned for the job attempt.
-
#name ⇒ String
The name of a container.
-
#reason ⇒ String
A short (255 max characters) human-readable string to provide additional details for a running or stopped container.
Instance Attribute Details
#container_id ⇒ String
The ID for the container.
3326 3327 3328 3329 3330 3331 3332 3333 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 3326 class EksAttemptContainerDetail < Struct.new( :name, :container_id, :exit_code, :reason) SENSITIVE = [] include Aws::Structure end |
#exit_code ⇒ Integer
The exit code returned for the job attempt. A non-zero exit code is considered failed.
3326 3327 3328 3329 3330 3331 3332 3333 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 3326 class EksAttemptContainerDetail < Struct.new( :name, :container_id, :exit_code, :reason) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of a container.
3326 3327 3328 3329 3330 3331 3332 3333 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 3326 class EksAttemptContainerDetail < Struct.new( :name, :container_id, :exit_code, :reason) SENSITIVE = [] include Aws::Structure end |
#reason ⇒ String
A short (255 max characters) human-readable string to provide additional details for a running or stopped container.
3326 3327 3328 3329 3330 3331 3332 3333 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 3326 class EksAttemptContainerDetail < Struct.new( :name, :container_id, :exit_code, :reason) SENSITIVE = [] include Aws::Structure end |