You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::Batch::Types::JobDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::JobDetail
- Defined in:
- (unknown)
Overview
An object representing an AWS Batch job.
Instance Attribute Summary collapse
-
#array_properties ⇒ Types::ArrayPropertiesDetail
The array properties of the job, if it is an array job.
-
#attempts ⇒ Array<Types::AttemptDetail>
A list of job attempts associated with this job.
-
#container ⇒ Types::ContainerDetail
An object representing the details of the container that is associated with the job.
-
#created_at ⇒ Integer
The Unix timestamp (in milliseconds) for when the job was created.
-
#depends_on ⇒ Array<Types::JobDependency>
A list of job IDs on which this job depends.
-
#job_arn ⇒ String
The Amazon Resource Name (ARN) of the job.
-
#job_definition ⇒ String
The job definition that is used by this job.
-
#job_id ⇒ String
The ID for the job.
-
#job_name ⇒ String
The name of the job.
-
#job_queue ⇒ String
The Amazon Resource Name (ARN) of the job queue with which the job is associated.
-
#node_details ⇒ Types::NodeDetails
An object representing the details of a node that is associated with a multi-node parallel job.
-
#node_properties ⇒ Types::NodeProperties
An object representing the node properties of a multi-node parallel job.
-
#parameters ⇒ Hash<String,String>
Additional parameters passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.
-
#retry_strategy ⇒ Types::RetryStrategy
The retry strategy to use for this job if an attempt fails.
-
#started_at ⇒ Integer
The Unix timestamp (in milliseconds) 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 (in milliseconds) for when the job was stopped (when the job transitioned from the
RUNNING
state to a terminal state, such asSUCCEEDED
orFAILED
). -
#tags ⇒ Hash<String,String>
The tags applied to the job.
-
#timeout ⇒ Types::JobTimeout
The timeout configuration for the job.
Instance Attribute Details
#array_properties ⇒ Types::ArrayPropertiesDetail
The array properties of the job, if it is an array job.
#attempts ⇒ Array<Types::AttemptDetail>
A list of job attempts associated with this job.
#container ⇒ Types::ContainerDetail
An object representing the details of the container that is associated with the job.
#created_at ⇒ Integer
The Unix timestamp (in milliseconds) 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.
#depends_on ⇒ Array<Types::JobDependency>
A list of job IDs on which this job depends.
#job_arn ⇒ String
The Amazon Resource Name (ARN) of the job.
#job_definition ⇒ String
The job definition that is used by this job.
#job_id ⇒ String
The ID for the job.
#job_name ⇒ String
The name of the job.
#job_queue ⇒ String
The Amazon Resource Name (ARN) of the job queue with which the job is associated.
#node_details ⇒ Types::NodeDetails
An object representing the details of a node that is associated with a multi-node parallel job.
#node_properties ⇒ Types::NodeProperties
An object representing the node properties of a multi-node parallel job.
#parameters ⇒ Hash<String,String>
Additional parameters passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.
#retry_strategy ⇒ Types::RetryStrategy
The retry strategy to use for this job if an attempt fails.
#started_at ⇒ Integer
The Unix timestamp (in milliseconds) for when the job was started (when
the job transitioned from the STARTING
state to the RUNNING
state).
This parameter is not provided for child jobs of array jobs or
multi-node parallel jobs.
#status ⇒ String
The current status for the job.
STARTING
, see Jobs Stuck in RUNNABLE
Status in the troubleshooting section of the AWS Batch User Guide.
#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 (in milliseconds) for when the job was stopped (when
the job transitioned from the RUNNING
state to a terminal state, such
as SUCCEEDED
or FAILED
).
#tags ⇒ Hash<String,String>
The tags applied to the job.
#timeout ⇒ Types::JobTimeout
The timeout configuration for the job.