Class: Aws::Batch::Types::AttemptDetail

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb

Overview

An object that represents a job attempt.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#containerTypes::AttemptContainerDetail

The details for the container in this job attempt.



153
154
155
156
157
158
159
160
161
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 153

class AttemptDetail < Struct.new(
  :container,
  :started_at,
  :stopped_at,
  :status_reason,
  :task_properties)
  SENSITIVE = []
  include Aws::Structure
end

#started_atInteger

The Unix timestamp (in milliseconds) for when the attempt was started (when the attempt transitioned from the STARTING state to the RUNNING state).

Returns:

  • (Integer)


153
154
155
156
157
158
159
160
161
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 153

class AttemptDetail < Struct.new(
  :container,
  :started_at,
  :stopped_at,
  :status_reason,
  :task_properties)
  SENSITIVE = []
  include Aws::Structure
end

#status_reasonString

A short, human-readable string to provide additional details for the current status of the job attempt.

Returns:

  • (String)


153
154
155
156
157
158
159
160
161
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 153

class AttemptDetail < Struct.new(
  :container,
  :started_at,
  :stopped_at,
  :status_reason,
  :task_properties)
  SENSITIVE = []
  include Aws::Structure
end

#stopped_atInteger

The Unix timestamp (in milliseconds) for when the attempt was stopped (when the attempt transitioned from the RUNNING state to a terminal state, such as SUCCEEDED or FAILED).

Returns:

  • (Integer)


153
154
155
156
157
158
159
160
161
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 153

class AttemptDetail < Struct.new(
  :container,
  :started_at,
  :stopped_at,
  :status_reason,
  :task_properties)
  SENSITIVE = []
  include Aws::Structure
end

#task_propertiesArray<Types::AttemptEcsTaskDetails>

The properties for a task definition that describes the container and volume definitions of an Amazon ECS task.

Returns:



153
154
155
156
157
158
159
160
161
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 153

class AttemptDetail < Struct.new(
  :container,
  :started_at,
  :stopped_at,
  :status_reason,
  :task_properties)
  SENSITIVE = []
  include Aws::Structure
end