#[non_exhaustive]
pub enum UpdateCustomVerificationEmailTemplateErrorKind {
CustomVerificationEmailInvalidContentException(CustomVerificationEmailInvalidContentException),
CustomVerificationEmailTemplateDoesNotExistException(CustomVerificationEmailTemplateDoesNotExistException),
FromEmailAddressNotVerifiedException(FromEmailAddressNotVerifiedException),
Unhandled(Unhandled),
}
Expand description
Types of errors that can occur for the UpdateCustomVerificationEmailTemplate
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
CustomVerificationEmailInvalidContentException(CustomVerificationEmailInvalidContentException)
Indicates that custom verification email template provided content is invalid.
CustomVerificationEmailTemplateDoesNotExistException(CustomVerificationEmailTemplateDoesNotExistException)
Indicates that a custom verification email template with the name you specified does not exist.
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.
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.