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 [`LogoutUser`](crate::operation::logout_user::builders::LogoutUserFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`LogoutUserOutput`](crate::operation::logout_user::LogoutUserOutput)
    /// - On failure, responds with [`SdkError<LogoutUserError>`](crate::operation::logout_user::LogoutUserError)
    pub fn logout_user(&self) -> crate::operation::logout_user::builders::LogoutUserFluentBuilder {
        crate::operation::logout_user::builders::LogoutUserFluentBuilder::new(self.handle.clone())
    }
}