1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`AssociateUserProficiencies`](crate::operation::associate_user_proficiencies::builders::AssociateUserProficienciesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`instance_id(impl Into<String>)`](crate::operation::associate_user_proficiencies::builders::AssociateUserProficienciesFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::associate_user_proficiencies::builders::AssociateUserProficienciesFluentBuilder::set_instance_id):<br>required: **true**<br><p>The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN of the instance).</p><br>
    ///   - [`user_id(impl Into<String>)`](crate::operation::associate_user_proficiencies::builders::AssociateUserProficienciesFluentBuilder::user_id) / [`set_user_id(Option<String>)`](crate::operation::associate_user_proficiencies::builders::AssociateUserProficienciesFluentBuilder::set_user_id):<br>required: **true**<br><p>The identifier of the user account.</p><br>
    ///   - [`user_proficiencies(UserProficiency)`](crate::operation::associate_user_proficiencies::builders::AssociateUserProficienciesFluentBuilder::user_proficiencies) / [`set_user_proficiencies(Option<Vec::<UserProficiency>>)`](crate::operation::associate_user_proficiencies::builders::AssociateUserProficienciesFluentBuilder::set_user_proficiencies):<br>required: **true**<br><p>The proficiencies to associate with the user.</p><br>
    /// - On success, responds with [`AssociateUserProficienciesOutput`](crate::operation::associate_user_proficiencies::AssociateUserProficienciesOutput)
    /// - On failure, responds with [`SdkError<AssociateUserProficienciesError>`](crate::operation::associate_user_proficiencies::AssociateUserProficienciesError)
    pub fn associate_user_proficiencies(&self) -> crate::operation::associate_user_proficiencies::builders::AssociateUserProficienciesFluentBuilder {
        crate::operation::associate_user_proficiencies::builders::AssociateUserProficienciesFluentBuilder::new(self.handle.clone())
    }
}