// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`PutAlternateContact`](crate::operation::put_alternate_contact::builders::PutAlternateContactFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`name(impl Into<String>)`](crate::operation::put_alternate_contact::builders::PutAlternateContactFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::put_alternate_contact::builders::PutAlternateContactFluentBuilder::set_name):<br>required: **true**<br><p>Specifies a name for the alternate contact.</p><br>
/// - [`title(impl Into<String>)`](crate::operation::put_alternate_contact::builders::PutAlternateContactFluentBuilder::title) / [`set_title(Option<String>)`](crate::operation::put_alternate_contact::builders::PutAlternateContactFluentBuilder::set_title):<br>required: **true**<br><p>Specifies a title for the alternate contact.</p><br>
/// - [`email_address(impl Into<String>)`](crate::operation::put_alternate_contact::builders::PutAlternateContactFluentBuilder::email_address) / [`set_email_address(Option<String>)`](crate::operation::put_alternate_contact::builders::PutAlternateContactFluentBuilder::set_email_address):<br>required: **true**<br><p>Specifies an email address for the alternate contact.</p><br>
/// - [`phone_number(impl Into<String>)`](crate::operation::put_alternate_contact::builders::PutAlternateContactFluentBuilder::phone_number) / [`set_phone_number(Option<String>)`](crate::operation::put_alternate_contact::builders::PutAlternateContactFluentBuilder::set_phone_number):<br>required: **true**<br><p>Specifies a phone number for the alternate contact.</p><br>
/// - [`alternate_contact_type(AlternateContactType)`](crate::operation::put_alternate_contact::builders::PutAlternateContactFluentBuilder::alternate_contact_type) / [`set_alternate_contact_type(Option<AlternateContactType>)`](crate::operation::put_alternate_contact::builders::PutAlternateContactFluentBuilder::set_alternate_contact_type):<br>required: **true**<br><p>Specifies which alternate contact you want to create or update.</p><br>
/// - [`account_id(impl Into<String>)`](crate::operation::put_alternate_contact::builders::PutAlternateContactFluentBuilder::account_id) / [`set_account_id(Option<String>)`](crate::operation::put_alternate_contact::builders::PutAlternateContactFluentBuilder::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 [`PutAlternateContactOutput`](crate::operation::put_alternate_contact::PutAlternateContactOutput)
/// - On failure, responds with [`SdkError<PutAlternateContactError>`](crate::operation::put_alternate_contact::PutAlternateContactError)
pub fn put_alternate_contact(&self) -> crate::operation::put_alternate_contact::builders::PutAlternateContactFluentBuilder {
crate::operation::put_alternate_contact::builders::PutAlternateContactFluentBuilder::new(self.handle.clone())
}
}