Class: Aws::Batch::Types::AttemptDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::AttemptDetail
- Includes:
- Structure
- Defined in:
- 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 ‘STARTING` state to the `RUNNING` state).
-
#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 ‘RUNNING` state to a terminal state, such as `SUCCEEDED` or `FAILED`).
-
#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.
153 154 155 156 157 158 159 160 161 |
# File '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_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).
153 154 155 156 157 158 159 160 161 |
# File '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_reason ⇒ String
A short, human-readable string to provide additional details for the current status of the job attempt.
153 154 155 156 157 158 159 160 161 |
# File '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_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`).
153 154 155 156 157 158 159 160 161 |
# File '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_properties ⇒ Array<Types::AttemptEcsTaskDetails>
The properties for a task definition that describes the container and volume definitions of an Amazon ECS task.
153 154 155 156 157 158 159 160 161 |
# File '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 |