aws-sdk-mediaconvert 1.128.0

AWS SDK for AWS Elemental MediaConvert
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateQueue`](crate::operation::update_queue::builders::UpdateQueueFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`concurrent_jobs(i32)`](crate::operation::update_queue::builders::UpdateQueueFluentBuilder::concurrent_jobs) / [`set_concurrent_jobs(Option<i32>)`](crate::operation::update_queue::builders::UpdateQueueFluentBuilder::set_concurrent_jobs):<br>required: **false**<br>Specify the maximum number of jobs your queue can process concurrently. For on-demand queues, the value you enter is constrained by your service quotas for Maximum concurrent jobs, per on-demand queue and Maximum concurrent jobs, per account. For reserved queues, update your reservation plan instead in order to increase your yearly commitment.<br>
    ///   - [`description(impl Into<String>)`](crate::operation::update_queue::builders::UpdateQueueFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_queue::builders::UpdateQueueFluentBuilder::set_description):<br>required: **false**<br>The new description for the queue, if you are changing it.<br>
    ///   - [`maximum_concurrent_feeds(i32)`](crate::operation::update_queue::builders::UpdateQueueFluentBuilder::maximum_concurrent_feeds) / [`set_maximum_concurrent_feeds(Option<i32>)`](crate::operation::update_queue::builders::UpdateQueueFluentBuilder::set_maximum_concurrent_feeds):<br>required: **false**<br>Specify the maximum number of Elemental Inference feeds MediaConvert can process concurrently.<br>
    ///   - [`name(impl Into<String>)`](crate::operation::update_queue::builders::UpdateQueueFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::update_queue::builders::UpdateQueueFluentBuilder::set_name):<br>required: **true**<br>The name of the queue that you are modifying.<br>
    ///   - [`reservation_plan_settings(ReservationPlanSettings)`](crate::operation::update_queue::builders::UpdateQueueFluentBuilder::reservation_plan_settings) / [`set_reservation_plan_settings(Option<ReservationPlanSettings>)`](crate::operation::update_queue::builders::UpdateQueueFluentBuilder::set_reservation_plan_settings):<br>required: **false**<br>The new details of your pricing plan for your reserved queue. When you set up a new pricing plan to replace an expired one, you enter into another 12-month commitment. When you add capacity to your queue by increasing the number of RTS, you extend the term of your commitment to 12 months from when you add capacity. After you make these commitments, you can't cancel them.<br>
    ///   - [`status(QueueStatus)`](crate::operation::update_queue::builders::UpdateQueueFluentBuilder::status) / [`set_status(Option<QueueStatus>)`](crate::operation::update_queue::builders::UpdateQueueFluentBuilder::set_status):<br>required: **false**<br>Pause or activate a queue by changing its status between ACTIVE and PAUSED. If you pause a queue, jobs in that queue won't begin. Jobs that are running when you pause the queue continue to run until they finish or result in an error.<br>
    /// - On success, responds with [`UpdateQueueOutput`](crate::operation::update_queue::UpdateQueueOutput) with field(s):
    ///   - [`queue(Option<Queue>)`](crate::operation::update_queue::UpdateQueueOutput::queue): You can use queues to manage the resources that are available to your AWS account for running multiple transcoding jobs at the same time. If you don't specify a queue, the service sends all jobs through the default queue. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/working-with-queues.html.
    /// - On failure, responds with [`SdkError<UpdateQueueError>`](crate::operation::update_queue::UpdateQueueError)
    pub fn update_queue(&self) -> crate::operation::update_queue::builders::UpdateQueueFluentBuilder {
        crate::operation::update_queue::builders::UpdateQueueFluentBuilder::new(self.handle.clone())
    }
}