[][src]Struct rusoto_sesv2::PutAccountDetailsRequest

pub struct PutAccountDetailsRequest {
    pub additional_contact_email_addresses: Option<Vec<String>>,
    pub contact_language: Option<String>,
    pub mail_type: String,
    pub production_access_enabled: Option<bool>,
    pub use_case_description: String,
    pub website_url: String,
}

A request to submit new account details.

Fields

additional_contact_email_addresses: Option<Vec<String>>

Additional email addresses that you would like to be notified regarding Amazon SES matters.

contact_language: Option<String>

The language you would prefer to be contacted with.

mail_type: String

The type of email your account will send.

production_access_enabled: Option<bool>

Indicates whether or not your account should have production access in the current AWS Region.

If the value is false, then your account is in the sandbox. When your account is in the sandbox, you can only send email to verified identities. Additionally, the maximum number of emails you can send in a 24-hour period (your sending quota) is 200, and the maximum number of emails you can send per second (your maximum sending rate) is 1.

If the value is true, 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.

use_case_description: String

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

website_url: 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 PutAccountDetailsRequest[src]

impl Debug for PutAccountDetailsRequest[src]

impl Default for PutAccountDetailsRequest[src]

impl PartialEq<PutAccountDetailsRequest> for PutAccountDetailsRequest[src]

impl Serialize for PutAccountDetailsRequest[src]

impl StructuralPartialEq for PutAccountDetailsRequest[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> 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.