1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`AssociateRoutingProfileQueues`](crate::operation::associate_routing_profile_queues::builders::AssociateRoutingProfileQueuesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`instance_id(impl Into<String>)`](crate::operation::associate_routing_profile_queues::builders::AssociateRoutingProfileQueuesFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::associate_routing_profile_queues::builders::AssociateRoutingProfileQueuesFluentBuilder::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::associate_routing_profile_queues::builders::AssociateRoutingProfileQueuesFluentBuilder::routing_profile_id) / [`set_routing_profile_id(Option<String>)`](crate::operation::associate_routing_profile_queues::builders::AssociateRoutingProfileQueuesFluentBuilder::set_routing_profile_id):<br>required: **true**<br><p>The identifier of the routing profile.</p><br>
    ///   - [`queue_configs(RoutingProfileQueueConfig)`](crate::operation::associate_routing_profile_queues::builders::AssociateRoutingProfileQueuesFluentBuilder::queue_configs) / [`set_queue_configs(Option<Vec::<RoutingProfileQueueConfig>>)`](crate::operation::associate_routing_profile_queues::builders::AssociateRoutingProfileQueuesFluentBuilder::set_queue_configs):<br>required: **true**<br><p>The queues to associate with this routing profile.</p><br>
    /// - On success, responds with [`AssociateRoutingProfileQueuesOutput`](crate::operation::associate_routing_profile_queues::AssociateRoutingProfileQueuesOutput)
    /// - On failure, responds with [`SdkError<AssociateRoutingProfileQueuesError>`](crate::operation::associate_routing_profile_queues::AssociateRoutingProfileQueuesError)
    pub fn associate_routing_profile_queues(
        &self,
    ) -> crate::operation::associate_routing_profile_queues::builders::AssociateRoutingProfileQueuesFluentBuilder {
        crate::operation::associate_routing_profile_queues::builders::AssociateRoutingProfileQueuesFluentBuilder::new(self.handle.clone())
    }
}