Enum rusoto_ses::SendCustomVerificationEmailError[][src]

pub enum SendCustomVerificationEmailError {
    ConfigurationSetDoesNotExist(String),
    CustomVerificationEmailTemplateDoesNotExist(String),
    FromEmailAddressNotVerified(String),
    MessageRejected(String),
    ProductionAccessNotGranted(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by SendCustomVerificationEmail

Variants

Indicates that the configuration set does not exist.

Indicates that a custom verification email template with the name you specified does not exist.

Indicates that the sender address specified for a custom verification email is not verified, and is therefore not eligible to send the custom verification email.

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 account has not been granted production access.

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

Trait Implementations

impl Debug for SendCustomVerificationEmailError
[src]

Formats the value using the given formatter. Read more

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

Performs the conversion.

impl From<CredentialsError> for SendCustomVerificationEmailError
[src]

Performs the conversion.

impl From<HttpDispatchError> for SendCustomVerificationEmailError
[src]

Performs the conversion.

impl From<Error> for SendCustomVerificationEmailError
[src]

Performs the conversion.

impl Display for SendCustomVerificationEmailError
[src]

Formats the value using the given formatter. Read more

impl Error for SendCustomVerificationEmailError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations