Enum rusoto_ses::SendRawEmailError [] [src]

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

Errors returned by SendRawEmail

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

Trait Implementations

impl Debug for SendRawEmailError
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for SendRawEmailError
[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 SendRawEmailError
[src]

[src]

Performs the conversion.

impl From<CredentialsError> for SendRawEmailError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for SendRawEmailError
[src]

[src]

Performs the conversion.

impl From<Error> for SendRawEmailError
[src]

[src]

Performs the conversion.

impl Display for SendRawEmailError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for SendRawEmailError
[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