pub enum CreateConfigurationSetTrackingOptionsError {
ConfigurationSetDoesNotExist(String),
InvalidTrackingOptions(String),
TrackingOptionsAlreadyExists(String),
}Expand description
Errors returned by CreateConfigurationSetTrackingOptions
Variants§
ConfigurationSetDoesNotExist(String)
Indicates that the configuration set does not exist.
InvalidTrackingOptions(String)
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.
TrackingOptionsAlreadyExists(String)
Indicates that the configuration set you specified already contains a TrackingOptions object.
Implementations§
Trait Implementations§
Source§impl Error for CreateConfigurationSetTrackingOptionsError
impl Error for CreateConfigurationSetTrackingOptionsError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for CreateConfigurationSetTrackingOptionsError
impl PartialEq for CreateConfigurationSetTrackingOptionsError
Source§fn eq(&self, other: &CreateConfigurationSetTrackingOptionsError) -> bool
fn eq(&self, other: &CreateConfigurationSetTrackingOptionsError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateConfigurationSetTrackingOptionsError
Auto Trait Implementations§
impl Freeze for CreateConfigurationSetTrackingOptionsError
impl RefUnwindSafe for CreateConfigurationSetTrackingOptionsError
impl Send for CreateConfigurationSetTrackingOptionsError
impl Sync for CreateConfigurationSetTrackingOptionsError
impl Unpin for CreateConfigurationSetTrackingOptionsError
impl UnwindSafe for CreateConfigurationSetTrackingOptionsError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more