#[non_exhaustive]
pub enum SendCustomVerificationEmailErrorKind {
ConfigurationSetDoesNotExistException(ConfigurationSetDoesNotExistException),
CustomVerificationEmailTemplateDoesNotExistException(CustomVerificationEmailTemplateDoesNotExistException),
FromEmailAddressNotVerifiedException(FromEmailAddressNotVerifiedException),
MessageRejected(MessageRejected),
ProductionAccessNotGrantedException(ProductionAccessNotGrantedException),
Unhandled(Box<dyn Error + Send + Sync + 'static>),
}
Expand description
Types of errors that can occur for the SendCustomVerificationEmail
operation.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
ConfigurationSetDoesNotExistException(ConfigurationSetDoesNotExistException)
Indicates that the configuration set does not exist.
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.
MessageRejected(MessageRejected)
Indicates that the action failed, and the message could not be sent. Check the error stack for more information about what caused the error.
ProductionAccessNotGrantedException(ProductionAccessNotGrantedException)
Indicates that the account has not been granted production access.
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
impl Send for SendCustomVerificationEmailErrorKind
impl Sync for SendCustomVerificationEmailErrorKind
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