// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`GetAccountInformation`](crate::operation::get_account_information::builders::GetAccountInformationFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`account_id(impl Into<String>)`](crate::operation::get_account_information::builders::GetAccountInformationFluentBuilder::account_id) / [`set_account_id(Option<String>)`](crate::operation::get_account_information::builders::GetAccountInformationFluentBuilder::set_account_id):<br>required: **false**<br><p>Specifies the 12 digit account ID number of the Amazon Web Services account that you want to access or modify with this operation.</p> <p>If you do not specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation.</p> <p>To use this parameter, the caller must be an identity in the <a href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_getting-started_concepts.html#account">organization's management account</a> or a delegated administrator account, and the specified account ID must be a member account in the same organization. The organization must have <a href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_org_support-all-features.html">all features enabled</a>, and the organization must have <a href="https://docs.aws.amazon.com/organizations/latest/userguide/services-that-can-integrate-account.html">trusted access</a> enabled for the Account Management service, and optionally a <a href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_getting-started_concepts.html#delegated-admin">delegated administrator</a> account assigned.</p><note> <p>The management account can't specify its own <code>AccountId</code>; it must call the operation in standalone context by not including the <code>AccountId</code> parameter.</p> </note> <p>To call this operation on an account that is not a member of an organization, then don't specify this parameter, and call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.</p><br>
/// - On success, responds with [`GetAccountInformationOutput`](crate::operation::get_account_information::GetAccountInformationOutput) with field(s):
/// - [`account_id(Option<String>)`](crate::operation::get_account_information::GetAccountInformationOutput::account_id): <p>Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. To use this parameter, the caller must be an identity in the <a href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_getting-started_concepts.html#account">organization's management account</a> or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have <a href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_org_support-all-features.html">all features enabled</a>, and the organization must have <a href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_integrate_services.html">trusted access</a> enabled for the Account Management service, and optionally a <a href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_getting-started_concepts.html#delegated-admin">delegated admin</a> account assigned.</p> <p>This operation can only be called from the management account or the delegated administrator account of an organization for a member account.</p><note> <p>The management account can't specify its own <code>AccountId</code>.</p> </note>
/// - [`account_name(Option<String>)`](crate::operation::get_account_information::GetAccountInformationOutput::account_name): <p>The name of the account.</p>
/// - [`account_created_date(Option<DateTime>)`](crate::operation::get_account_information::GetAccountInformationOutput::account_created_date): <p>The date and time the account was created.</p>
/// - [`account_state(Option<AccountState>)`](crate::operation::get_account_information::GetAccountInformationOutput::account_state): <p>The state of the account. Each account state represents a specific phase in the account lifecycle. Use this information to manage account access, automate workflows, or trigger actions based on account state changes.</p> <p>Valid values: <code>PENDING_ACTIVATION | ACTIVE | SUSPENDED | CLOSED</code></p>
/// - On failure, responds with [`SdkError<GetAccountInformationError>`](crate::operation::get_account_information::GetAccountInformationError)
pub fn get_account_information(&self) -> crate::operation::get_account_information::builders::GetAccountInformationFluentBuilder {
crate::operation::get_account_information::builders::GetAccountInformationFluentBuilder::new(self.handle.clone())
}
}