Enum aws_sdk_ses::error::SendEmailErrorKind
source · #[non_exhaustive]
pub enum SendEmailErrorKind {
AccountSendingPausedException(AccountSendingPausedException),
ConfigurationSetDoesNotExistException(ConfigurationSetDoesNotExistException),
ConfigurationSetSendingPausedException(ConfigurationSetSendingPausedException),
MailFromDomainNotVerifiedException(MailFromDomainNotVerifiedException),
MessageRejected(MessageRejected),
Unhandled(Unhandled),
}
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(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.