[][src]Struct rusoto_sesv2::BulkEmailEntryResult

pub struct BulkEmailEntryResult {
    pub error: Option<String>,
    pub message_id: Option<String>,
    pub status: Option<String>,
}

The result of the SendBulkEmail operation of each specified BulkEmailEntry.

Fields

error: Option<String>

A description of an error that prevented a message being sent using the SendBulkTemplatedEmail operation.

message_id: Option<String>

The unique message identifier returned from the SendBulkTemplatedEmail operation.

status: Option<String>

The status of a message sent using the SendBulkTemplatedEmail operation.

Possible values for this parameter include:

  • SUCCESS: Amazon SES accepted the message, and will attempt to deliver it to the recipients.

  • MESSAGEREJECTED: The message was rejected because it contained a virus.

  • MAILFROMDOMAINNOTVERIFIED: The sender's email address or domain was not verified.

  • CONFIGURATIONSETDOESNOTEXIST: The configuration set you specified does not exist.

  • TEMPLATEDOESNOTEXIST: The template you specified does not exist.

  • ACCOUNTSUSPENDED: Your account has been shut down because of issues related to your email sending practices.

  • ACCOUNTTHROTTLED: The number of emails you can send has been reduced because your account has exceeded its allocated sending limit.

  • ACCOUNTDAILYQUOTAEXCEEDED: You have reached or exceeded the maximum number of emails you can send from your account in a 24-hour period.

  • INVALIDSENDINGPOOLNAME: The configuration set you specified refers to an IP pool that does not exist.

  • ACCOUNTSENDINGPAUSED: Email sending for the Amazon SES account was disabled using the UpdateAccountSendingEnabled operation.

  • CONFIGURATIONSETSENDINGPAUSED: Email sending for this configuration set was disabled using the <a href="https://docs.aws.amazon.com/ses/latest/APIReference/APIUpdateConfigurationSetSendingEnabled.html">UpdateConfigurationSetSendingEnabled operation.

  • INVALIDPARAMETERVALUE: One or more of the parameters you specified when calling this operation was invalid. See the error message for additional information.

  • TRANSIENT_FAILURE: Amazon SES was unable to process your request because of a temporary issue.

  • FAILED: Amazon SES was unable to process your request. See the error message for additional information.

Trait Implementations

impl Clone for BulkEmailEntryResult[src]

impl Debug for BulkEmailEntryResult[src]

impl Default for BulkEmailEntryResult[src]

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

impl PartialEq<BulkEmailEntryResult> for BulkEmailEntryResult[src]

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