aws_sdk_batch/client/update_job_queue.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`UpdateJobQueue`](crate::operation::update_job_queue::builders::UpdateJobQueueFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`job_queue(impl Into<String>)`](crate::operation::update_job_queue::builders::UpdateJobQueueFluentBuilder::job_queue) / [`set_job_queue(Option<String>)`](crate::operation::update_job_queue::builders::UpdateJobQueueFluentBuilder::set_job_queue):<br>required: **true**<br><p>The name or the Amazon Resource Name (ARN) of the job queue.</p><br>
7 /// - [`state(JqState)`](crate::operation::update_job_queue::builders::UpdateJobQueueFluentBuilder::state) / [`set_state(Option<JqState>)`](crate::operation::update_job_queue::builders::UpdateJobQueueFluentBuilder::set_state):<br>required: **false**<br><p>Describes the queue's ability to accept new jobs. If the job queue state is <code>ENABLED</code>, it can accept jobs. If the job queue state is <code>DISABLED</code>, new jobs can't be added to the queue, but jobs already in the queue can finish.</p><br>
8 /// - [`scheduling_policy_arn(impl Into<String>)`](crate::operation::update_job_queue::builders::UpdateJobQueueFluentBuilder::scheduling_policy_arn) / [`set_scheduling_policy_arn(Option<String>)`](crate::operation::update_job_queue::builders::UpdateJobQueueFluentBuilder::set_scheduling_policy_arn):<br>required: **false**<br><p>Amazon Resource Name (ARN) of the fair-share scheduling policy. Once a job queue is created, the fair-share scheduling policy can be replaced but not removed. The format is <code>aws:<i>Partition</i>:batch:<i>Region</i>:<i>Account</i>:scheduling-policy/<i>Name</i> </code>. For example, <code>aws:aws:batch:us-west-2:123456789012:scheduling-policy/MySchedulingPolicy</code>.</p><br>
9 /// - [`priority(i32)`](crate::operation::update_job_queue::builders::UpdateJobQueueFluentBuilder::priority) / [`set_priority(Option<i32>)`](crate::operation::update_job_queue::builders::UpdateJobQueueFluentBuilder::set_priority):<br>required: **false**<br><p>The priority of the job queue. Job queues with a higher priority (or a higher integer value for the <code>priority</code> 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 <code>10</code> is given scheduling preference over a job queue with a priority value of <code>1</code>. All of the compute environments must be either EC2 (<code>EC2</code> or <code>SPOT</code>) or Fargate (<code>FARGATE</code> or <code>FARGATE_SPOT</code>). EC2 and Fargate compute environments can't be mixed.</p><br>
10 /// - [`compute_environment_order(ComputeEnvironmentOrder)`](crate::operation::update_job_queue::builders::UpdateJobQueueFluentBuilder::compute_environment_order) / [`set_compute_environment_order(Option<Vec::<ComputeEnvironmentOrder>>)`](crate::operation::update_job_queue::builders::UpdateJobQueueFluentBuilder::set_compute_environment_order):<br>required: **false**<br><p>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 runs a given job. Compute environments must be in the <code>VALID</code> state before you can associate them with a job queue. All of the compute environments must be either EC2 (<code>EC2</code> or <code>SPOT</code>) or Fargate (<code>FARGATE</code> or <code>FARGATE_SPOT</code>). EC2 and Fargate compute environments can't be mixed.</p><note> <p>All compute environments that are associated with a job queue must share the same architecture. Batch doesn't support mixing compute environment architecture types in a single job queue.</p> </note><br>
11 /// - [`service_environment_order(ServiceEnvironmentOrder)`](crate::operation::update_job_queue::builders::UpdateJobQueueFluentBuilder::service_environment_order) / [`set_service_environment_order(Option<Vec::<ServiceEnvironmentOrder>>)`](crate::operation::update_job_queue::builders::UpdateJobQueueFluentBuilder::set_service_environment_order):<br>required: **false**<br><p>The order of the service environment associated with the job queue. Job queues with a higher priority are evaluated first when associated with the same service environment.</p><br>
12 /// - [`job_state_time_limit_actions(JobStateTimeLimitAction)`](crate::operation::update_job_queue::builders::UpdateJobQueueFluentBuilder::job_state_time_limit_actions) / [`set_job_state_time_limit_actions(Option<Vec::<JobStateTimeLimitAction>>)`](crate::operation::update_job_queue::builders::UpdateJobQueueFluentBuilder::set_job_state_time_limit_actions):<br>required: **false**<br><p>The set of actions that Batch perform on jobs that remain at the head of the job queue in the specified state longer than specified times. Batch will perform each action after <code>maxTimeSeconds</code> has passed. (<b>Note</b>: The minimum value for maxTimeSeconds is 600 (10 minutes) and its maximum value is 86,400 (24 hours).)</p><br>
13 /// - On success, responds with [`UpdateJobQueueOutput`](crate::operation::update_job_queue::UpdateJobQueueOutput) with field(s):
14 /// - [`job_queue_name(Option<String>)`](crate::operation::update_job_queue::UpdateJobQueueOutput::job_queue_name): <p>The name of the job queue.</p>
15 /// - [`job_queue_arn(Option<String>)`](crate::operation::update_job_queue::UpdateJobQueueOutput::job_queue_arn): <p>The Amazon Resource Name (ARN) of the job queue.</p>
16 /// - On failure, responds with [`SdkError<UpdateJobQueueError>`](crate::operation::update_job_queue::UpdateJobQueueError)
17 pub fn update_job_queue(&self) -> crate::operation::update_job_queue::builders::UpdateJobQueueFluentBuilder {
18 crate::operation::update_job_queue::builders::UpdateJobQueueFluentBuilder::new(self.handle.clone())
19 }
20}