Class: Aws::Batch::Types::EksAttemptContainerDetail

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#exit_codeInteger

The exit code returned for the job attempt. A non-zero exit code is considered failed.

Returns:

  • (Integer)


3301
3302
3303
3304
3305
3306
3307
# File 'lib/aws-sdk-batch/types.rb', line 3301

class EksAttemptContainerDetail < Struct.new(
  :name,
  :exit_code,
  :reason)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of a container.

Returns:

  • (String)


3301
3302
3303
3304
3305
3306
3307
# File 'lib/aws-sdk-batch/types.rb', line 3301

class EksAttemptContainerDetail < Struct.new(
  :name,
  :exit_code,
  :reason)
  SENSITIVE = []
  include Aws::Structure
end

#reasonString

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

Returns:

  • (String)


3301
3302
3303
3304
3305
3306
3307
# File 'lib/aws-sdk-batch/types.rb', line 3301

class EksAttemptContainerDetail < Struct.new(
  :name,
  :exit_code,
  :reason)
  SENSITIVE = []
  include Aws::Structure
end