Method: Aws::Batch::Types::JobDetail#status
- Defined in:
- lib/aws-sdk-batch/types.rb
#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
5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 |
# File 'lib/aws-sdk-batch/types.rb', line 5986 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, :consumable_resource_properties) SENSITIVE = [] include Aws::Structure end |