1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteUserAttributes`](crate::operation::delete_user_attributes::builders::DeleteUserAttributesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`user_attribute_names(impl Into<String>)`](crate::operation::delete_user_attributes::builders::DeleteUserAttributesFluentBuilder::user_attribute_names) / [`set_user_attribute_names(Option<Vec::<String>>)`](crate::operation::delete_user_attributes::builders::DeleteUserAttributesFluentBuilder::set_user_attribute_names):<br>required: **true**<br><p>An array of strings representing the user attribute names you want to delete.</p> <p>For custom attributes, you must prependattach the <code>custom:</code> prefix to the front of the attribute name.</p><br>
    ///   - [`access_token(impl Into<String>)`](crate::operation::delete_user_attributes::builders::DeleteUserAttributesFluentBuilder::access_token) / [`set_access_token(Option<String>)`](crate::operation::delete_user_attributes::builders::DeleteUserAttributesFluentBuilder::set_access_token):<br>required: **true**<br><p>A valid access token that Amazon Cognito issued to the user whose attributes you want to delete.</p><br>
    /// - On success, responds with [`DeleteUserAttributesOutput`](crate::operation::delete_user_attributes::DeleteUserAttributesOutput)
    /// - On failure, responds with [`SdkError<DeleteUserAttributesError>`](crate::operation::delete_user_attributes::DeleteUserAttributesError)
    pub fn delete_user_attributes(&self) -> crate::operation::delete_user_attributes::builders::DeleteUserAttributesFluentBuilder {
        crate::operation::delete_user_attributes::builders::DeleteUserAttributesFluentBuilder::new(self.handle.clone())
    }
}