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 [`RemoveAccountFromOrganization`](crate::operation::remove_account_from_organization::builders::RemoveAccountFromOrganizationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`account_id(impl Into<String>)`](crate::operation::remove_account_from_organization::builders::RemoveAccountFromOrganizationFluentBuilder::account_id) / [`set_account_id(Option<String>)`](crate::operation::remove_account_from_organization::builders::RemoveAccountFromOrganizationFluentBuilder::set_account_id):<br>required: **true**<br><p>The unique identifier (ID) of the member account that you want to remove from the organization.</p> <p>The <a href="http://wikipedia.org/wiki/regex">regex pattern</a> for an account ID string requires exactly 12 digits.</p><br>
    /// - On success, responds with [`RemoveAccountFromOrganizationOutput`](crate::operation::remove_account_from_organization::RemoveAccountFromOrganizationOutput)
    /// - On failure, responds with [`SdkError<RemoveAccountFromOrganizationError>`](crate::operation::remove_account_from_organization::RemoveAccountFromOrganizationError)
    pub fn remove_account_from_organization(
        &self,
    ) -> crate::operation::remove_account_from_organization::builders::RemoveAccountFromOrganizationFluentBuilder {
        crate::operation::remove_account_from_organization::builders::RemoveAccountFromOrganizationFluentBuilder::new(self.handle.clone())
    }
}