1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`PutAccountDetails`](crate::operation::put_account_details::builders::PutAccountDetailsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`mail_type(MailType)`](crate::operation::put_account_details::builders::PutAccountDetailsFluentBuilder::mail_type) / [`set_mail_type(Option<MailType>)`](crate::operation::put_account_details::builders::PutAccountDetailsFluentBuilder::set_mail_type):<br>required: **true**<br><p>The type of email your account will send.</p><br>
    ///   - [`website_url(impl Into<String>)`](crate::operation::put_account_details::builders::PutAccountDetailsFluentBuilder::website_url) / [`set_website_url(Option<String>)`](crate::operation::put_account_details::builders::PutAccountDetailsFluentBuilder::set_website_url):<br>required: **true**<br><p>The URL of your website. This information helps us better understand the type of content that you plan to send.</p><br>
    ///   - [`contact_language(ContactLanguage)`](crate::operation::put_account_details::builders::PutAccountDetailsFluentBuilder::contact_language) / [`set_contact_language(Option<ContactLanguage>)`](crate::operation::put_account_details::builders::PutAccountDetailsFluentBuilder::set_contact_language):<br>required: **false**<br><p>The language you would prefer to be contacted with.</p><br>
    ///   - [`use_case_description(impl Into<String>)`](crate::operation::put_account_details::builders::PutAccountDetailsFluentBuilder::use_case_description) / [`set_use_case_description(Option<String>)`](crate::operation::put_account_details::builders::PutAccountDetailsFluentBuilder::set_use_case_description):<br>required: **true**<br><p>A description of the types of email that you plan to send.</p><br>
    ///   - [`additional_contact_email_addresses(impl Into<String>)`](crate::operation::put_account_details::builders::PutAccountDetailsFluentBuilder::additional_contact_email_addresses) / [`set_additional_contact_email_addresses(Option<Vec::<String>>)`](crate::operation::put_account_details::builders::PutAccountDetailsFluentBuilder::set_additional_contact_email_addresses):<br>required: **false**<br><p>Additional email addresses that you would like to be notified regarding Amazon SES matters.</p><br>
    ///   - [`production_access_enabled(bool)`](crate::operation::put_account_details::builders::PutAccountDetailsFluentBuilder::production_access_enabled) / [`set_production_access_enabled(Option<bool>)`](crate::operation::put_account_details::builders::PutAccountDetailsFluentBuilder::set_production_access_enabled):<br>required: **false**<br><p>Indicates whether or not your account should have production access in the current Amazon Web Services Region.</p> <p>If the value is <code>false</code>, then your account is in the <i>sandbox</i>. When your account is in the sandbox, you can only send email to verified identities.</p> <p>If the value is <code>true</code>, then your account has production access. When your account has production access, you can send email to any address. The sending quota and maximum sending rate for your account vary based on your specific use case.</p><br>
    /// - On success, responds with [`PutAccountDetailsOutput`](crate::operation::put_account_details::PutAccountDetailsOutput)
    /// - On failure, responds with [`SdkError<PutAccountDetailsError>`](crate::operation::put_account_details::PutAccountDetailsError)
    pub fn put_account_details(&self) -> crate::operation::put_account_details::builders::PutAccountDetailsFluentBuilder {
        crate::operation::put_account_details::builders::PutAccountDetailsFluentBuilder::new(self.handle.clone())
    }
}