#[non_exhaustive]
pub enum CreateCustomVerificationEmailTemplateErrorKind {
CustomVerificationEmailInvalidContentException(CustomVerificationEmailInvalidContentException),
CustomVerificationEmailTemplateAlreadyExistsException(CustomVerificationEmailTemplateAlreadyExistsException),
FromEmailAddressNotVerifiedException(FromEmailAddressNotVerifiedException),
LimitExceededException(LimitExceededException),
Unhandled(Box<dyn Error + Send + Sync + 'static>),
}
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(Box<dyn Error + Send + Sync + 'static>)
An unexpected error, e.g. invalid JSON returned by the service or an unknown error code
Trait Implementations
Auto Trait Implementations
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more