Class: Aws::Batch::Types::FrontOfQueueDetail

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#jobsArray<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.

Returns:



4666
4667
4668
4669
4670
4671
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 4666

class FrontOfQueueDetail < Struct.new(
  :jobs,
  :last_updated_at)
  SENSITIVE = []
  include Aws::Structure
end

#last_updated_atInteger

The Unix timestamp (in milliseconds) for when each of the first 100 RUNNABLE jobs were last updated.

Returns:

  • (Integer)


4666
4667
4668
4669
4670
4671
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 4666

class FrontOfQueueDetail < Struct.new(
  :jobs,
  :last_updated_at)
  SENSITIVE = []
  include Aws::Structure
end