#[non_exhaustive]
pub enum CreateCustomVerificationEmailTemplateErrorKind {
CustomVerificationEmailInvalidContentException(CustomVerificationEmailInvalidContentException),
CustomVerificationEmailTemplateAlreadyExistsException(CustomVerificationEmailTemplateAlreadyExistsException),
FromEmailAddressNotVerifiedException(FromEmailAddressNotVerifiedException),
LimitExceededException(LimitExceededException),
Unhandled(Unhandled),
}
Expand description
Types of errors that can occur for the CreateCustomVerificationEmailTemplate
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
CustomVerificationEmailInvalidContentException(CustomVerificationEmailInvalidContentException)
Indicates that custom verification email template provided content is invalid.
CustomVerificationEmailTemplateAlreadyExistsException(CustomVerificationEmailTemplateAlreadyExistsException)
Indicates that a custom verification email template with the name you specified already exists.
FromEmailAddressNotVerifiedException(FromEmailAddressNotVerifiedException)
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.
LimitExceededException(LimitExceededException)
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.
Unhandled(Unhandled)
An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
When logging an error from the SDK, it is recommended that you either wrap the error in
DisplayErrorContext
, use another
error reporter library that visits the error’s cause/source chain, or call
Error::source
for more details about the underlying cause.