Struct rusoto_batch::CreateJobQueueRequest [] [src]

pub struct CreateJobQueueRequest {
    pub compute_environment_order: Vec<ComputeEnvironmentOrder>,
    pub job_queue_name: String,
    pub priority: i64,
    pub state: Option<String>,
}

Fields

The set of compute environments mapped to a job queue and their order relative to each other. The job scheduler uses this parameter to determine which compute environment should execute a given job. Compute environments must be in the VALID state before you can associate them with a job queue. You can associate up to 3 compute environments with a job queue.

The name of the job queue.

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

The state of the job queue. If the job queue state is ENABLED, it is able to accept jobs.

Trait Implementations

impl Default for CreateJobQueueRequest
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for CreateJobQueueRequest
[src]

[src]

Formats the value using the given formatter.

impl Clone for CreateJobQueueRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more