Enum rusoto_ses::SendEmailError [] [src]

pub enum SendEmailError {
    ConfigurationSetDoesNotExist(String),
    MailFromDomainNotVerified(String),
    MessageRejected(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by SendEmail

Variants

Indicates that the configuration set does not exist.

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.

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 SendEmailError
[src]

[src]

Trait Implementations

impl Debug for SendEmailError
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for SendEmailError
[src]

[src]

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

[src]

This method tests for !=.

impl From<XmlParseError> for SendEmailError
[src]

[src]

Performs the conversion.

impl From<CredentialsError> for SendEmailError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for SendEmailError
[src]

[src]

Performs the conversion.

impl From<Error> for SendEmailError
[src]

[src]

Performs the conversion.

impl Display for SendEmailError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for SendEmailError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

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

Auto Trait Implementations