aws_sdk_connect/client/update_routing_profile_concurrency.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 [`UpdateRoutingProfileConcurrency`](crate::operation::update_routing_profile_concurrency::builders::UpdateRoutingProfileConcurrencyFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`instance_id(impl Into<String>)`](crate::operation::update_routing_profile_concurrency::builders::UpdateRoutingProfileConcurrencyFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::update_routing_profile_concurrency::builders::UpdateRoutingProfileConcurrencyFluentBuilder::set_instance_id):<br>required: **true**<br><p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p><br>
7 /// - [`routing_profile_id(impl Into<String>)`](crate::operation::update_routing_profile_concurrency::builders::UpdateRoutingProfileConcurrencyFluentBuilder::routing_profile_id) / [`set_routing_profile_id(Option<String>)`](crate::operation::update_routing_profile_concurrency::builders::UpdateRoutingProfileConcurrencyFluentBuilder::set_routing_profile_id):<br>required: **true**<br><p>The identifier of the routing profile.</p><br>
8 /// - [`media_concurrencies(MediaConcurrency)`](crate::operation::update_routing_profile_concurrency::builders::UpdateRoutingProfileConcurrencyFluentBuilder::media_concurrencies) / [`set_media_concurrencies(Option<Vec::<MediaConcurrency>>)`](crate::operation::update_routing_profile_concurrency::builders::UpdateRoutingProfileConcurrencyFluentBuilder::set_media_concurrencies):<br>required: **true**<br><p>The channels that agents can handle in the Contact Control Panel (CCP).</p><br>
9 /// - On success, responds with [`UpdateRoutingProfileConcurrencyOutput`](crate::operation::update_routing_profile_concurrency::UpdateRoutingProfileConcurrencyOutput)
10 /// - On failure, responds with [`SdkError<UpdateRoutingProfileConcurrencyError>`](crate::operation::update_routing_profile_concurrency::UpdateRoutingProfileConcurrencyError)
11 pub fn update_routing_profile_concurrency(
12 &self,
13 ) -> crate::operation::update_routing_profile_concurrency::builders::UpdateRoutingProfileConcurrencyFluentBuilder {
14 crate::operation::update_routing_profile_concurrency::builders::UpdateRoutingProfileConcurrencyFluentBuilder::new(self.handle.clone())
15 }
16}