1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`BatchUnsuspendUser`](crate::operation::batch_unsuspend_user::builders::BatchUnsuspendUserFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`account_id(impl Into<String>)`](crate::operation::batch_unsuspend_user::builders::BatchUnsuspendUserFluentBuilder::account_id) / [`set_account_id(Option<String>)`](crate::operation::batch_unsuspend_user::builders::BatchUnsuspendUserFluentBuilder::set_account_id): <p>The Amazon Chime account ID.</p>
    ///   - [`user_id_list(Vec<String>)`](crate::operation::batch_unsuspend_user::builders::BatchUnsuspendUserFluentBuilder::user_id_list) / [`set_user_id_list(Option<Vec<String>>)`](crate::operation::batch_unsuspend_user::builders::BatchUnsuspendUserFluentBuilder::set_user_id_list): <p>The request containing the user IDs to unsuspend.</p>
    /// - On success, responds with [`BatchUnsuspendUserOutput`](crate::operation::batch_unsuspend_user::BatchUnsuspendUserOutput) with field(s):
    ///   - [`user_errors(Option<Vec<UserError>>)`](crate::operation::batch_unsuspend_user::BatchUnsuspendUserOutput::user_errors): <p>If the <code>BatchUnsuspendUser</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<BatchUnsuspendUserError>`](crate::operation::batch_unsuspend_user::BatchUnsuspendUserError)
    pub fn batch_unsuspend_user(
        &self,
    ) -> crate::operation::batch_unsuspend_user::builders::BatchUnsuspendUserFluentBuilder {
        crate::operation::batch_unsuspend_user::builders::BatchUnsuspendUserFluentBuilder::new(
            self.handle.clone(),
        )
    }
}