Class: Aws::Batch::Types::EksAttemptContainerDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::EksAttemptContainerDetail
- Includes:
- Structure
- Defined in:
- 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
-
#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
#exit_code ⇒ Integer
The exit code returned for the job attempt. A non-zero exit code is considered failed.
3311 3312 3313 3314 3315 3316 3317 |
# File 'lib/aws-sdk-batch/types.rb', line 3311 class EksAttemptContainerDetail < Struct.new( :name, :exit_code, :reason) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of a container.
3311 3312 3313 3314 3315 3316 3317 |
# File 'lib/aws-sdk-batch/types.rb', line 3311 class EksAttemptContainerDetail < Struct.new( :name, :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.
3311 3312 3313 3314 3315 3316 3317 |
# File 'lib/aws-sdk-batch/types.rb', line 3311 class EksAttemptContainerDetail < Struct.new( :name, :exit_code, :reason) SENSITIVE = [] include Aws::Structure end |