Class: Aws::Batch::Types::JobDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::JobDetail
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-batch/types.rb
Overview
An object that represents an Batch job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#array_properties ⇒ Types::ArrayPropertiesDetail
The array properties of the job, if it’s an array job.
-
#attempts ⇒ Array<Types::AttemptDetail>
A list of job attempts that are associated with this job.
-
#container ⇒ Types::ContainerDetail
An object that represents the details for the container that’s 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 that this job depends on.
-
#ecs_properties ⇒ Types::EcsPropertiesDetail
An object with properties that are specific to Amazon ECS-based jobs.
-
#eks_attempts ⇒ Array<Types::EksAttemptDetail>
A list of job attempts that are associated with this job.
-
#eks_properties ⇒ Types::EksPropertiesDetail
An object with various properties that are specific to Amazon EKS based jobs.
-
#is_cancelled ⇒ Boolean
Indicates whether the job is canceled.
-
#is_terminated ⇒ Boolean
Indicates whether the job is terminated.
-
#job_arn ⇒ String
The Amazon Resource Name (ARN) of the job.
-
#job_definition ⇒ String
The Amazon Resource Name (ARN) of the job definition that this job uses.
-
#job_id ⇒ String
The job ID.
-
#job_name ⇒ String
The job name.
-
#job_queue ⇒ String
The Amazon Resource Name (ARN) of the job queue that the job is associated with.
-
#node_details ⇒ Types::NodeDetails
An object that represents the details of a node that’s associated with a multi-node parallel job.
-
#node_properties ⇒ Types::NodeProperties
An object that represents the node properties of a multi-node parallel job.
-
#parameters ⇒ Hash<String,String>
Additional parameters that are passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.
-
#platform_capabilities ⇒ Array<String>
The platform capabilities required by the job definition.
-
#propagate_tags ⇒ Boolean
Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task.
-
#retry_strategy ⇒ Types::RetryStrategy
The retry strategy to use for this job if an attempt fails.
-
#scheduling_priority ⇒ Integer
The scheduling policy of the job definition.
-
#share_identifier ⇒ String
The share identifier for the job.
-
#started_at ⇒ Integer
The Unix timestamp (in milliseconds) for when the job was started.
-
#status ⇒ String
The current status for the job.
-
#status_reason ⇒ String
A short, human-readable string to provide more details for the current status of the job.
-
#stopped_at ⇒ Integer
The Unix timestamp (in milliseconds) for when the job was stopped.
-
#tags ⇒ Hash<String,String>
The tags that are 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’s an array job.
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#attempts ⇒ Array<Types::AttemptDetail>
A list of job attempts that are associated with this job.
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#container ⇒ Types::ContainerDetail
An object that represents the details for the container that’s associated with the job. If the details are for a multiple-container job, this object will be empty.
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#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. This is specifically at the time
- SubmitJob][1
-
was called. For array child jobs, this is when the
child job was spawned by its parent and entered the ‘PENDING` state.
[1]: docs.aws.amazon.com/batch/latest/APIReference/API_SubmitJob.html
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#depends_on ⇒ Array<Types::JobDependency>
A list of job IDs that this job depends on.
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#ecs_properties ⇒ Types::EcsPropertiesDetail
An object with properties that are specific to Amazon ECS-based jobs.
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#eks_attempts ⇒ Array<Types::EksAttemptDetail>
A list of job attempts that are associated with this job.
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#eks_properties ⇒ Types::EksPropertiesDetail
An object with various properties that are specific to Amazon EKS based jobs.
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#is_cancelled ⇒ Boolean
Indicates whether the job is canceled.
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#is_terminated ⇒ Boolean
Indicates whether the job is terminated.
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#job_arn ⇒ String
The Amazon Resource Name (ARN) of the job.
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#job_definition ⇒ String
The Amazon Resource Name (ARN) of the job definition that this job uses.
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#job_id ⇒ String
The job ID.
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#job_name ⇒ String
The job name.
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#job_queue ⇒ String
The Amazon Resource Name (ARN) of the job queue that the job is associated with.
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#node_details ⇒ Types::NodeDetails
An object that represents the details of a node that’s associated with a multi-node parallel job.
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#node_properties ⇒ Types::NodeProperties
An object that represents the node properties of a multi-node parallel job.
<note markdown=“1”> This isn’t applicable to jobs that are running on Fargate resources.
</note>
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#parameters ⇒ Hash<String,String>
Additional parameters that are passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#platform_capabilities ⇒ Array<String>
The platform capabilities required by the job definition. If no value is specified, it defaults to ‘EC2`. Jobs run on Fargate resources specify `FARGATE`.
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#propagate_tags ⇒ Boolean
Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If no value is specified, the tags aren’t propagated. Tags can only be propagated to the tasks when the tasks are created. For tags with the same name, job tags are given priority over job definitions tags. If the total number of combined tags from the job and job definition is over 50, the job is moved to the ‘FAILED` state.
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#retry_strategy ⇒ Types::RetryStrategy
The retry strategy to use for this job if an attempt fails.
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#scheduling_priority ⇒ Integer
The scheduling policy of the job definition. This only affects jobs in job queues with a fair share policy. Jobs with a higher scheduling priority are scheduled before jobs with a lower scheduling priority.
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#share_identifier ⇒ String
The share identifier for the job.
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#started_at ⇒ Integer
The Unix timestamp (in milliseconds) for when the job was started. More specifically, it’s when the job transitioned from the ‘STARTING` state to the `RUNNING` state.
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The current status for the job.
<note markdown=“1”> If your jobs don’t progress to ‘STARTING`, see [Jobs stuck in RUNNABLE status] in the troubleshooting section of the *Batch User Guide*.
</note>
[1]: docs.aws.amazon.com/batch/latest/userguide/troubleshooting.html#job_stuck_in_runnable
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#status_reason ⇒ String
A short, human-readable string to provide more details for the current status of the job.
-
‘CAPACITY:INSUFFICIENT_INSTANCE_CAPACITY` - All compute environments have insufficient capacity to service the job.
-
‘MISCONFIGURATION:COMPUTE_ENVIRONMENT_MAX_RESOURCE` - All compute environments have a `maxVcpu` setting that is smaller than the job requirements.
-
‘MISCONFIGURATION:JOB_RESOURCE_REQUIREMENT` - All compute environments have no connected instances that meet the job requirements.
-
‘MISCONFIGURATION:SERVICE_ROLE_PERMISSIONS` - All compute environments have problems with the service role permissions.
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#stopped_at ⇒ Integer
The Unix timestamp (in milliseconds) for when the job was stopped. More specifically, it’s when the job transitioned from the ‘RUNNING` state to a terminal state, such as `SUCCEEDED` or `FAILED`.
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
The tags that are applied to the job.
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |
#timeout ⇒ Types::JobTimeout
The timeout configuration for the job.
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-batch/types.rb', line 5115 class JobDetail < Struct.new( :job_arn, :job_name, :job_id, :job_queue, :status, :share_identifier, :scheduling_priority, :attempts, :status_reason, :created_at, :retry_strategy, :started_at, :stopped_at, :depends_on, :job_definition, :parameters, :container, :node_details, :node_properties, :array_properties, :timeout, :tags, :propagate_tags, :platform_capabilities, :eks_properties, :eks_attempts, :ecs_properties, :is_cancelled, :is_terminated) SENSITIVE = [] include Aws::Structure end |