Class: Aws::Batch::Types::FrontOfQueueDetail
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Batch::Types::FrontOfQueueDetail
 
 
- Defined in:
 - gems/aws-sdk-batch/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
RUNNABLEjobs in a named job queue. - 
  
    
      #last_updated_at  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Unix timestamp (in milliseconds) for when each of the first 100
RUNNABLEjobs 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.
      5528 5529 5530 5531 5532 5533  | 
    
      # File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 5528 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.
      5528 5529 5530 5531 5532 5533  | 
    
      # File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 5528 class FrontOfQueueDetail < Struct.new( :jobs, :last_updated_at) SENSITIVE = [] include Aws::Structure end  |