Enum aws_sdk_ses::error::SendEmailErrorKind
source · [−]#[non_exhaustive]
pub enum SendEmailErrorKind {
AccountSendingPausedException(AccountSendingPausedException),
ConfigurationSetDoesNotExistException(ConfigurationSetDoesNotExistException),
ConfigurationSetSendingPausedException(ConfigurationSetSendingPausedException),
MailFromDomainNotVerifiedException(MailFromDomainNotVerifiedException),
MessageRejected(MessageRejected),
Unhandled(Box<dyn Error + Send + Sync + 'static>),
}
Expand description
Types of errors that can occur for the SendEmail
operation.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
AccountSendingPausedException(AccountSendingPausedException)
Indicates that email sending is disabled for your entire Amazon SES account.
You can enable or disable email sending for your Amazon SES account using UpdateAccountSendingEnabled
.
ConfigurationSetDoesNotExistException(ConfigurationSetDoesNotExistException)
Indicates that the configuration set does not exist.
ConfigurationSetSendingPausedException(ConfigurationSetSendingPausedException)
Indicates that email sending is disabled for the configuration set.
You can enable or disable email sending for a configuration set using UpdateConfigurationSetSendingEnabled
.
MailFromDomainNotVerifiedException(MailFromDomainNotVerifiedException)
Indicates that the message could not be sent because Amazon SES could not read the MX record required to use the specified MAIL FROM domain. For information about editing the custom MAIL FROM domain settings for an identity, see the Amazon SES Developer Guide.
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.
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 !RefUnwindSafe for SendEmailErrorKind
impl Send for SendEmailErrorKind
impl Sync for SendEmailErrorKind
impl Unpin for SendEmailErrorKind
impl !UnwindSafe for SendEmailErrorKind
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