Struct aws_sdk_chime::client::fluent_builders::BatchSuspendUser
source · [−]pub struct BatchSuspendUser { /* private fields */ }Expand description
Fluent builder constructing a request to BatchSuspendUser.
Suspends up to 50 users from a Team or EnterpriseLWA Amazon Chime account. For more information about different account types, see Managing Your Amazon Chime Accounts in the Amazon Chime Administration Guide.
Users suspended from a Team account are disassociated from the account,but they can continue to use Amazon Chime as free users. To remove the suspension from suspended Team account users, invite them to the Team account again. You can use the InviteUsers action to do so.
Users suspended from an EnterpriseLWA account are immediately signed out of Amazon Chime and can no longer sign in. To remove the suspension from suspended EnterpriseLWA account users, use the BatchUnsuspendUser action.
To sign out users without suspending them, use the LogoutUser action.
Implementations
sourceimpl BatchSuspendUser
impl BatchSuspendUser
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<BatchSuspendUser, AwsResponseRetryClassifier>, SdkError<BatchSuspendUserError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<BatchSuspendUser, AwsResponseRetryClassifier>, SdkError<BatchSuspendUserError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<BatchSuspendUserOutput, SdkError<BatchSuspendUserError>>
pub async fn send(
self
) -> Result<BatchSuspendUserOutput, SdkError<BatchSuspendUserError>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn account_id(self, input: impl Into<String>) -> Self
pub fn account_id(self, input: impl Into<String>) -> Self
The Amazon Chime account ID.
sourcepub fn set_account_id(self, input: Option<String>) -> Self
pub fn set_account_id(self, input: Option<String>) -> Self
The Amazon Chime account ID.
sourcepub fn user_id_list(self, input: impl Into<String>) -> Self
pub fn user_id_list(self, input: impl Into<String>) -> Self
Appends an item to UserIdList.
To override the contents of this collection use set_user_id_list.
The request containing the user IDs to suspend.
sourcepub fn set_user_id_list(self, input: Option<Vec<String>>) -> Self
pub fn set_user_id_list(self, input: Option<Vec<String>>) -> Self
The request containing the user IDs to suspend.
Trait Implementations
sourceimpl Clone for BatchSuspendUser
impl Clone for BatchSuspendUser
sourcefn clone(&self) -> BatchSuspendUser
fn clone(&self) -> BatchSuspendUser
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more