aws_sdk_connect/client/update_routing_profile_queues.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`UpdateRoutingProfileQueues`](crate::operation::update_routing_profile_queues::builders::UpdateRoutingProfileQueuesFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`instance_id(impl Into<String>)`](crate::operation::update_routing_profile_queues::builders::UpdateRoutingProfileQueuesFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::update_routing_profile_queues::builders::UpdateRoutingProfileQueuesFluentBuilder::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>
/// - [`routing_profile_id(impl Into<String>)`](crate::operation::update_routing_profile_queues::builders::UpdateRoutingProfileQueuesFluentBuilder::routing_profile_id) / [`set_routing_profile_id(Option<String>)`](crate::operation::update_routing_profile_queues::builders::UpdateRoutingProfileQueuesFluentBuilder::set_routing_profile_id):<br>required: **true**<br><p>The identifier of the routing profile.</p><br>
/// - [`queue_configs(RoutingProfileQueueConfig)`](crate::operation::update_routing_profile_queues::builders::UpdateRoutingProfileQueuesFluentBuilder::queue_configs) / [`set_queue_configs(Option<Vec::<RoutingProfileQueueConfig>>)`](crate::operation::update_routing_profile_queues::builders::UpdateRoutingProfileQueuesFluentBuilder::set_queue_configs):<br>required: **true**<br><p>The queues to be updated for this routing profile. Queues must first be associated to the routing profile. You can do this using AssociateRoutingProfileQueues.</p><br>
/// - On success, responds with [`UpdateRoutingProfileQueuesOutput`](crate::operation::update_routing_profile_queues::UpdateRoutingProfileQueuesOutput)
/// - On failure, responds with [`SdkError<UpdateRoutingProfileQueuesError>`](crate::operation::update_routing_profile_queues::UpdateRoutingProfileQueuesError)
pub fn update_routing_profile_queues(
&self,
) -> crate::operation::update_routing_profile_queues::builders::UpdateRoutingProfileQueuesFluentBuilder {
crate::operation::update_routing_profile_queues::builders::UpdateRoutingProfileQueuesFluentBuilder::new(self.handle.clone())
}
}