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 [`DisassociateUserProficiencies`](crate::operation::disassociate_user_proficiencies::builders::DisassociateUserProficienciesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`instance_id(impl Into<String>)`](crate::operation::disassociate_user_proficiencies::builders::DisassociateUserProficienciesFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::disassociate_user_proficiencies::builders::DisassociateUserProficienciesFluentBuilder::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::disassociate_user_proficiencies::builders::DisassociateUserProficienciesFluentBuilder::user_id) / [`set_user_id(Option<String>)`](crate::operation::disassociate_user_proficiencies::builders::DisassociateUserProficienciesFluentBuilder::set_user_id):<br>required: **true**<br><p>The identifier of the user account.</p><br>
    ///   - [`user_proficiencies(UserProficiencyDisassociate)`](crate::operation::disassociate_user_proficiencies::builders::DisassociateUserProficienciesFluentBuilder::user_proficiencies) / [`set_user_proficiencies(Option<Vec::<UserProficiencyDisassociate>>)`](crate::operation::disassociate_user_proficiencies::builders::DisassociateUserProficienciesFluentBuilder::set_user_proficiencies):<br>required: **true**<br><p>The proficiencies to disassociate from the user.</p><br>
    /// - On success, responds with [`DisassociateUserProficienciesOutput`](crate::operation::disassociate_user_proficiencies::DisassociateUserProficienciesOutput)
    /// - On failure, responds with [`SdkError<DisassociateUserProficienciesError>`](crate::operation::disassociate_user_proficiencies::DisassociateUserProficienciesError)
    pub fn disassociate_user_proficiencies(
        &self,
    ) -> crate::operation::disassociate_user_proficiencies::builders::DisassociateUserProficienciesFluentBuilder {
        crate::operation::disassociate_user_proficiencies::builders::DisassociateUserProficienciesFluentBuilder::new(self.handle.clone())
    }
}