#[non_exhaustive]
pub enum UpdateConfigurationSetTrackingOptionsErrorKind {
ConfigurationSetDoesNotExistException(ConfigurationSetDoesNotExistException),
InvalidTrackingOptionsException(InvalidTrackingOptionsException),
TrackingOptionsDoesNotExistException(TrackingOptionsDoesNotExistException),
Unhandled(Unhandled),
}
Expand description
Types of errors that can occur for the UpdateConfigurationSetTrackingOptions
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
ConfigurationSetDoesNotExistException(ConfigurationSetDoesNotExistException)
Indicates that the configuration set does not exist.
InvalidTrackingOptionsException(InvalidTrackingOptionsException)
Indicates that the custom domain to be used for open and click tracking redirects is invalid. This error appears most often in the following situations:
-
When the tracking domain you specified is not verified in Amazon SES.
-
When the tracking domain you specified is not a valid domain or subdomain.
TrackingOptionsDoesNotExistException(TrackingOptionsDoesNotExistException)
Indicates that the TrackingOptions object you specified does not exist.
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.