Enum rusoto_ses::SendBulkTemplatedEmailError[][src]

pub enum SendBulkTemplatedEmailError {
    AccountSendingPaused(String),
    ConfigurationSetDoesNotExist(String),
    ConfigurationSetSendingPaused(String),
    MailFromDomainNotVerified(String),
    MessageRejected(String),
    TemplateDoesNotExist(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by SendBulkTemplatedEmail

Variants

Indicates that email sending is disabled for your entire Amazon SES account.

You can enable or disable email sending for your Amazon SES account using UpdateAccountSendingEnabled.

Indicates that the configuration set does not exist.

Indicates that email sending is disabled for the configuration set.

You can enable or disable email sending for a configuration set using UpdateConfigurationSetSendingEnabled.

Indicates that the message could not be sent because Amazon SES could not read the MX record required to use the specified MAIL FROM domain. For information about editing the custom MAIL FROM domain settings for an identity, see the Amazon SES Developer Guide.

Indicates that the action failed, and the message could not be sent. Check the error stack for more information about what caused the error.

Indicates that the Template object you specified does not exist in your Amazon SES account.

An error occurred dispatching the HTTP request

An error was encountered with AWS credentials.

A validation error occurred. Details from AWS are provided.

An unknown error occurred. The raw HTTP response is provided.

Methods

impl SendBulkTemplatedEmailError
[src]

Trait Implementations

impl Debug for SendBulkTemplatedEmailError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for SendBulkTemplatedEmailError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<XmlParseError> for SendBulkTemplatedEmailError
[src]

Performs the conversion.

impl From<CredentialsError> for SendBulkTemplatedEmailError
[src]

Performs the conversion.

impl From<HttpDispatchError> for SendBulkTemplatedEmailError
[src]

Performs the conversion.

impl From<Error> for SendBulkTemplatedEmailError
[src]

Performs the conversion.

impl Display for SendBulkTemplatedEmailError
[src]

Formats the value using the given formatter. Read more

impl Error for SendBulkTemplatedEmailError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

Auto Trait Implementations