Enum rusoto_ses::CreateCustomVerificationEmailTemplateError[][src]

pub enum CreateCustomVerificationEmailTemplateError {
    CustomVerificationEmailInvalidContent(String),
    CustomVerificationEmailTemplateAlreadyExists(String),
    FromEmailAddressNotVerified(String),
    LimitExceeded(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by CreateCustomVerificationEmailTemplate

Variants

Indicates that custom verification email template provided content is invalid.

Indicates that a custom verification email template with the name you specified already exists.

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 a resource could not be created because of service limits. For a list of Amazon SES limits, see the Amazon SES Developer Guide.

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

Trait Implementations

impl Debug for CreateCustomVerificationEmailTemplateError
[src]

Formats the value using the given formatter. Read more

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

Performs the conversion.

impl From<CredentialsError> for CreateCustomVerificationEmailTemplateError
[src]

Performs the conversion.

impl From<HttpDispatchError> for CreateCustomVerificationEmailTemplateError
[src]

impl From<Error> for CreateCustomVerificationEmailTemplateError
[src]

Performs the conversion.

impl Display for CreateCustomVerificationEmailTemplateError
[src]

Formats the value using the given formatter. Read more

impl Error for CreateCustomVerificationEmailTemplateError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations