AWS Batch

2024/06/03 - AWS Batch - 1 new api methods

Changes  This release adds support for the AWS Batch GetJobQueueSnapshot API operation.

GetJobQueueSnapshot (new) Link ¶

Provides a list of the first 100 RUNNABLE jobs associated to a single job queue.

See also: AWS API Documentation

Request Syntax

client.get_job_queue_snapshot(
    jobQueue='string'
)
type jobQueue

string

param jobQueue

[REQUIRED]

The job queue’s name or full queue Amazon Resource Name (ARN).

rtype

dict

returns

Response Syntax

{
    'frontOfQueue': {
        'jobs': [
            {
                'jobArn': 'string',
                'earliestTimeAtPosition': 123
            },
        ],
        'lastUpdatedAt': 123
    }
}

Response Structure

  • (dict) --

    • frontOfQueue (dict) --

      The list of the first 100 RUNNABLE jobs in each 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.

      • jobs (list) --

        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.

        • (dict) --

          An object that represents summary details for the first 100 RUNNABLE jobs in a job queue.

          • jobArn (string) --

            The ARN for a job in a named job queue.

          • earliestTimeAtPosition (integer) --

            The Unix timestamp (in milliseconds) for when the job transitioned to its current position in the job queue.

      • lastUpdatedAt (integer) --

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