Enum rusoto_ses::UpdateCustomVerificationEmailTemplateError[][src]

pub enum UpdateCustomVerificationEmailTemplateError {
    CustomVerificationEmailInvalidContent(String),
    CustomVerificationEmailTemplateDoesNotExist(String),
    FromEmailAddressNotVerified(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by UpdateCustomVerificationEmailTemplate

Variants

Indicates that custom verification email template provided content is invalid.

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.

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

Trait Implementations

impl Debug for UpdateCustomVerificationEmailTemplateError
[src]

Formats the value using the given formatter. Read more

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

Performs the conversion.

impl From<CredentialsError> for UpdateCustomVerificationEmailTemplateError
[src]

Performs the conversion.

impl From<HttpDispatchError> for UpdateCustomVerificationEmailTemplateError
[src]

impl From<Error> for UpdateCustomVerificationEmailTemplateError
[src]

Performs the conversion.

impl Display for UpdateCustomVerificationEmailTemplateError
[src]

Formats the value using the given formatter. Read more

impl Error for UpdateCustomVerificationEmailTemplateError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations