aws_sdk_chime/client/logout_user.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`LogoutUser`](crate::operation::logout_user::builders::LogoutUserFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`account_id(impl Into<String>)`](crate::operation::logout_user::builders::LogoutUserFluentBuilder::account_id) / [`set_account_id(Option<String>)`](crate::operation::logout_user::builders::LogoutUserFluentBuilder::set_account_id):<br>required: **true**<br><p>The Amazon Chime account ID.</p><br>
7 /// - [`user_id(impl Into<String>)`](crate::operation::logout_user::builders::LogoutUserFluentBuilder::user_id) / [`set_user_id(Option<String>)`](crate::operation::logout_user::builders::LogoutUserFluentBuilder::set_user_id):<br>required: **true**<br><p>The user ID.</p><br>
8 /// - On success, responds with [`LogoutUserOutput`](crate::operation::logout_user::LogoutUserOutput)
9 /// - On failure, responds with [`SdkError<LogoutUserError>`](crate::operation::logout_user::LogoutUserError)
10 pub fn logout_user(&self) -> crate::operation::logout_user::builders::LogoutUserFluentBuilder {
11 crate::operation::logout_user::builders::LogoutUserFluentBuilder::new(self.handle.clone())
12 }
13}