You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Batch::Types::UpdateJobQueueRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateJobQueueRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  job_queue: "String", # required
  state: "ENABLED", # accepts ENABLED, DISABLED
  priority: 1,
  compute_environment_order: [
    {
      order: 1, # required
      compute_environment: "String", # required
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#compute_environment_orderArray<Types::ComputeEnvironmentOrder>

Details the set of compute environments mapped to a job queue and their order relative to each other. This is one of the parameters used by the job scheduler to determine which compute environment should execute a given job.

Returns:

#job_queueString

The name or the Amazon Resource Name (ARN) of the job queue.

Returns:

  • (String)

    The name or the Amazon Resource Name (ARN) of the job queue.

#priorityInteger

The priority of the job queue. Job queues with a higher priority (or a higher integer value for the priority parameter) are evaluated first when associated with the same compute environment. Priority is determined in descending order, for example, a job queue with a priority value of 10 is given scheduling preference over a job queue with a priority value of 1.

Returns:

  • (Integer)

    The priority of the job queue.

#stateString

Describes the queue\'s ability to accept new jobs. If the job queue state is ENABLED, it is able to accept jobs. If the job queue state is DISABLED, new jobs cannot be added to the queue, but jobs already in the queue can finish.

Possible values:

  • ENABLED
  • DISABLED

Returns:

  • (String)

    Describes the queue\'s ability to accept new jobs.