[][src]Struct rusoto_sesv2::AccountDetails

pub struct AccountDetails {
    pub additional_contact_email_addresses: Option<Vec<String>>,
    pub contact_language: Option<String>,
    pub mail_type: Option<String>,
    pub review_details: Option<ReviewDetails>,
    pub use_case_description: Option<String>,
    pub website_url: Option<String>,
}

An object that contains information about your account details.

Fields

additional_contact_email_addresses: Option<Vec<String>>

Additional email addresses where updates are sent about your account review process.

contact_language: Option<String>

The language you would prefer for the case. The contact language can be one of ENGLISH or JAPANESE.

mail_type: Option<String>

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.

review_details: Option<ReviewDetails>

Information about the review of the latest details you submitted.

use_case_description: Option<String>

A description of the types of email that you plan to send.

website_url: Option<String>

The URL of your website. This information helps us better understand the type of content that you plan to send.

Trait Implementations

impl Clone for AccountDetails[src]

impl Debug for AccountDetails[src]

impl Default for AccountDetails[src]

impl<'de> Deserialize<'de> for AccountDetails[src]

impl PartialEq<AccountDetails> for AccountDetails[src]

impl StructuralPartialEq for AccountDetails[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.