Struct aws_sdk_sesv2::types::builders::AccountDetailsBuilder
source · #[non_exhaustive]pub struct AccountDetailsBuilder { /* private fields */ }Expand description
A builder for AccountDetails.
Implementations§
source§impl AccountDetailsBuilder
impl AccountDetailsBuilder
sourcepub fn mail_type(self, input: MailType) -> Self
pub fn mail_type(self, input: MailType) -> Self
The type of email your account is sending. The mail type can be one of the following:
-
MARKETING– Most of your sending traffic is to keep your customers informed of your latest offering. -
TRANSACTIONAL– Most of your sending traffic is to communicate during a transaction with a customer.
sourcepub fn set_mail_type(self, input: Option<MailType>) -> Self
pub fn set_mail_type(self, input: Option<MailType>) -> Self
The type of email your account is sending. The mail type can be one of the following:
-
MARKETING– Most of your sending traffic is to keep your customers informed of your latest offering. -
TRANSACTIONAL– Most of your sending traffic is to communicate during a transaction with a customer.
sourcepub fn website_url(self, input: impl Into<String>) -> Self
pub fn website_url(self, input: impl Into<String>) -> Self
The URL of your website. This information helps us better understand the type of content that you plan to send.
sourcepub fn set_website_url(self, input: Option<String>) -> Self
pub fn set_website_url(self, input: Option<String>) -> Self
The URL of your website. This information helps us better understand the type of content that you plan to send.
sourcepub fn contact_language(self, input: ContactLanguage) -> Self
pub fn contact_language(self, input: ContactLanguage) -> Self
The language you would prefer for the case. The contact language can be one of ENGLISH or JAPANESE.
sourcepub fn set_contact_language(self, input: Option<ContactLanguage>) -> Self
pub fn set_contact_language(self, input: Option<ContactLanguage>) -> Self
The language you would prefer for the case. The contact language can be one of ENGLISH or JAPANESE.
sourcepub fn use_case_description(self, input: impl Into<String>) -> Self
pub fn use_case_description(self, input: impl Into<String>) -> Self
A description of the types of email that you plan to send.
sourcepub fn set_use_case_description(self, input: Option<String>) -> Self
pub fn set_use_case_description(self, input: Option<String>) -> Self
A description of the types of email that you plan to send.
sourcepub fn additional_contact_email_addresses(
self,
input: impl Into<String>
) -> Self
pub fn additional_contact_email_addresses( self, input: impl Into<String> ) -> Self
Appends an item to additional_contact_email_addresses.
To override the contents of this collection use set_additional_contact_email_addresses.
Additional email addresses where updates are sent about your account review process.
sourcepub fn set_additional_contact_email_addresses(
self,
input: Option<Vec<String>>
) -> Self
pub fn set_additional_contact_email_addresses( self, input: Option<Vec<String>> ) -> Self
Additional email addresses where updates are sent about your account review process.
sourcepub fn review_details(self, input: ReviewDetails) -> Self
pub fn review_details(self, input: ReviewDetails) -> Self
Information about the review of the latest details you submitted.
sourcepub fn set_review_details(self, input: Option<ReviewDetails>) -> Self
pub fn set_review_details(self, input: Option<ReviewDetails>) -> Self
Information about the review of the latest details you submitted.
sourcepub fn build(self) -> AccountDetails
pub fn build(self) -> AccountDetails
Consumes the builder and constructs a AccountDetails.
Trait Implementations§
source§impl Clone for AccountDetailsBuilder
impl Clone for AccountDetailsBuilder
source§fn clone(&self) -> AccountDetailsBuilder
fn clone(&self) -> AccountDetailsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for AccountDetailsBuilder
impl Debug for AccountDetailsBuilder
source§impl Default for AccountDetailsBuilder
impl Default for AccountDetailsBuilder
source§fn default() -> AccountDetailsBuilder
fn default() -> AccountDetailsBuilder
source§impl PartialEq<AccountDetailsBuilder> for AccountDetailsBuilder
impl PartialEq<AccountDetailsBuilder> for AccountDetailsBuilder
source§fn eq(&self, other: &AccountDetailsBuilder) -> bool
fn eq(&self, other: &AccountDetailsBuilder) -> bool
self and other values to be equal, and is used
by ==.