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 [`BatchUpdateUser`](crate::operation::batch_update_user::builders::BatchUpdateUserFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`account_id(impl Into<String>)`](crate::operation::batch_update_user::builders::BatchUpdateUserFluentBuilder::account_id) / [`set_account_id(Option<String>)`](crate::operation::batch_update_user::builders::BatchUpdateUserFluentBuilder::set_account_id):<br>required: **true**<br><p>The Amazon Chime account ID.</p><br>
    ///   - [`update_user_request_items(UpdateUserRequestItem)`](crate::operation::batch_update_user::builders::BatchUpdateUserFluentBuilder::update_user_request_items) / [`set_update_user_request_items(Option<Vec::<UpdateUserRequestItem>>)`](crate::operation::batch_update_user::builders::BatchUpdateUserFluentBuilder::set_update_user_request_items):<br>required: **true**<br><p>The request containing the user IDs and details to update.</p><br>
    /// - On success, responds with [`BatchUpdateUserOutput`](crate::operation::batch_update_user::BatchUpdateUserOutput) with field(s):
    ///   - [`user_errors(Option<Vec::<UserError>>)`](crate::operation::batch_update_user::BatchUpdateUserOutput::user_errors): <p>If the <code>BatchUpdateUser</code> action fails for one or more of the user IDs in the request, a list of the user IDs is returned, along with error codes and error messages.</p>
    /// - On failure, responds with [`SdkError<BatchUpdateUserError>`](crate::operation::batch_update_user::BatchUpdateUserError)
    pub fn batch_update_user(&self) -> crate::operation::batch_update_user::builders::BatchUpdateUserFluentBuilder {
        crate::operation::batch_update_user::builders::BatchUpdateUserFluentBuilder::new(self.handle.clone())
    }
}