aws_sdk_connect/client/disassociate_user_proficiencies.rs
// 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())
}
}