Class: Aws::Batch::Types::AttemptDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::AttemptDetail
- 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
-
#container ⇒ Types::AttemptContainerDetail
The details for the container in this job attempt.
-
#started_at ⇒ Integer
The Unix timestamp (in milliseconds) for when the attempt was started (when the attempt transitioned from the
STARTINGstate to theRUNNINGstate). -
#status_reason ⇒ String
A short, human-readable string to provide additional details for the current status of the job attempt.
-
#stopped_at ⇒ Integer
The Unix timestamp (in milliseconds) for when the attempt was stopped (when the attempt transitioned from the
RUNNINGstate to a terminal state, such asSUCCEEDEDorFAILED). -
#task_properties ⇒ Array<Types::AttemptEcsTaskDetails>
The properties for a task definition that describes the container and volume definitions of an Amazon ECS task.
Instance Attribute Details
#container ⇒ Types::AttemptContainerDetail
The details for the container in this job attempt.
171 172 173 174 175 176 177 178 179 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 171 class AttemptDetail < Struct.new( :container, :started_at, :stopped_at, :status_reason, :task_properties) SENSITIVE = [] include Aws::Structure end |
#started_at ⇒ Integer
The Unix timestamp (in milliseconds) for when the attempt was
started (when the attempt transitioned from the STARTING state to
the RUNNING state).
171 172 173 174 175 176 177 178 179 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 171 class AttemptDetail < Struct.new( :container, :started_at, :stopped_at, :status_reason, :task_properties) SENSITIVE = [] include Aws::Structure end |
#status_reason ⇒ String
A short, human-readable string to provide additional details for the current status of the job attempt.
171 172 173 174 175 176 177 178 179 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 171 class AttemptDetail < Struct.new( :container, :started_at, :stopped_at, :status_reason, :task_properties) SENSITIVE = [] include Aws::Structure end |
#stopped_at ⇒ Integer
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).
171 172 173 174 175 176 177 178 179 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 171 class AttemptDetail < Struct.new( :container, :started_at, :stopped_at, :status_reason, :task_properties) SENSITIVE = [] include Aws::Structure end |
#task_properties ⇒ Array<Types::AttemptEcsTaskDetails>
The properties for a task definition that describes the container and volume definitions of an Amazon ECS task.
171 172 173 174 175 176 177 178 179 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 171 class AttemptDetail < Struct.new( :container, :started_at, :stopped_at, :status_reason, :task_properties) SENSITIVE = [] include Aws::Structure end |