Class: Aws::Batch::Types::FrontOfQueueDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::FrontOfQueueDetail
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-batch/types.rb
Overview
Contains a list of the first 100 ‘RUNNABLE` jobs associated to a single job queue.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#jobs ⇒ Array<Types::FrontOfQueueJobSummary>
The Amazon Resource Names (ARNs) of the first 100 ‘RUNNABLE` jobs in a named job queue.
-
#last_updated_at ⇒ Integer
The Unix timestamp (in milliseconds) for when each of the first 100 ‘RUNNABLE` jobs were last updated.
Instance Attribute Details
#jobs ⇒ Array<Types::FrontOfQueueJobSummary>
The Amazon Resource Names (ARNs) of the first 100 ‘RUNNABLE` jobs in a named job queue. For first-in-first-out (FIFO) job queues, jobs are ordered based on their submission time. For fair share scheduling (FSS) job queues, jobs are ordered based on their job priority and share usage.
4780 4781 4782 4783 4784 4785 |
# File 'lib/aws-sdk-batch/types.rb', line 4780 class FrontOfQueueDetail < Struct.new( :jobs, :last_updated_at) SENSITIVE = [] include Aws::Structure end |
#last_updated_at ⇒ Integer
The Unix timestamp (in milliseconds) for when each of the first 100 ‘RUNNABLE` jobs were last updated.
4780 4781 4782 4783 4784 4785 |
# File 'lib/aws-sdk-batch/types.rb', line 4780 class FrontOfQueueDetail < Struct.new( :jobs, :last_updated_at) SENSITIVE = [] include Aws::Structure end |