You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::Batch::Types::JobSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::JobSummary
- Defined in:
- (unknown)
Overview
An object representing summary details of a job.
Instance Attribute Summary collapse
-
#array_properties ⇒ Types::ArrayPropertiesSummary
The array properties of the job, if it is an array job.
-
#container ⇒ Types::ContainerSummary
An object representing the details of the container that is associated with the job.
-
#created_at ⇒ Integer
The Unix timestamp for when the job was created.
-
#job_arn ⇒ String
The Amazon Resource Name (ARN) of the job.
-
#job_id ⇒ String
The ID of the job.
-
#job_name ⇒ String
The name of the job.
-
#node_properties ⇒ Types::NodePropertiesSummary
The node properties for a single node in a job summary list.
-
#started_at ⇒ Integer
The Unix timestamp for when the job was started (when the job transitioned from the
STARTING
state to theRUNNING
state). -
#status ⇒ String
The current status for the job.
-
#status_reason ⇒ String
A short, human-readable string to provide additional details about the current status of the job.
-
#stopped_at ⇒ Integer
The Unix timestamp for when the job was stopped (when the job transitioned from the
RUNNING
state to a terminal state, such asSUCCEEDED
orFAILED
).
Instance Attribute Details
#array_properties ⇒ Types::ArrayPropertiesSummary
The array properties of the job, if it is an array job.
#container ⇒ Types::ContainerSummary
An object representing the details of the container that is associated with the job.
#created_at ⇒ Integer
The Unix timestamp for when the job was created. For non-array jobs and
parent array jobs, this is when the job entered the SUBMITTED
state
(at the time SubmitJob was called). For array child jobs, this is
when the child job was spawned by its parent and entered the PENDING
state.
#job_arn ⇒ String
The Amazon Resource Name (ARN) of the job.
#job_id ⇒ String
The ID of the job.
#job_name ⇒ String
The name of the job.
#node_properties ⇒ Types::NodePropertiesSummary
The node properties for a single node in a job summary list.
#started_at ⇒ Integer
The Unix timestamp for when the job was started (when the job
transitioned from the STARTING
state to the RUNNING
state).
#status ⇒ String
The current status for the job.
Possible values:
- SUBMITTED
- PENDING
- RUNNABLE
- STARTING
- RUNNING
- SUCCEEDED
- FAILED
#status_reason ⇒ String
A short, human-readable string to provide additional details about the current status of the job.
#stopped_at ⇒ Integer
The Unix timestamp for when the job was stopped (when the job
transitioned from the RUNNING
state to a terminal state, such as
SUCCEEDED
or FAILED
).