aws-sdk-account 1.72.0

AWS SDK for AWS Account
Documentation
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 [`GetPrimaryEmail`](crate::operation::get_primary_email::builders::GetPrimaryEmailFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`account_id(impl Into<String>)`](crate::operation::get_primary_email::builders::GetPrimaryEmailFluentBuilder::account_id) / [`set_account_id(Option<String>)`](crate::operation::get_primary_email::builders::GetPrimaryEmailFluentBuilder::set_account_id):<br>required: **true**<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. 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><br>
    /// - On success, responds with [`GetPrimaryEmailOutput`](crate::operation::get_primary_email::GetPrimaryEmailOutput) with field(s):
    ///   - [`primary_email(Option<String>)`](crate::operation::get_primary_email::GetPrimaryEmailOutput::primary_email): <p>Retrieves the primary email address associated with the specified account.</p>
    /// - On failure, responds with [`SdkError<GetPrimaryEmailError>`](crate::operation::get_primary_email::GetPrimaryEmailError)
    pub fn get_primary_email(&self) -> crate::operation::get_primary_email::builders::GetPrimaryEmailFluentBuilder {
        crate::operation::get_primary_email::builders::GetPrimaryEmailFluentBuilder::new(self.handle.clone())
    }
}