pub enum UpdateConfigurationSetTrackingOptionsError {
ConfigurationSetDoesNotExist(String),
InvalidTrackingOptions(String),
TrackingOptionsDoesNotExist(String),
}Expand description
Errors returned by UpdateConfigurationSetTrackingOptions
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.
TrackingOptionsDoesNotExist(String)
Indicates that the TrackingOptions object you specified does not exist.
Implementations§
Trait Implementations§
Source§impl Error for UpdateConfigurationSetTrackingOptionsError
impl Error for UpdateConfigurationSetTrackingOptionsError
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 UpdateConfigurationSetTrackingOptionsError
impl PartialEq for UpdateConfigurationSetTrackingOptionsError
Source§fn eq(&self, other: &UpdateConfigurationSetTrackingOptionsError) -> bool
fn eq(&self, other: &UpdateConfigurationSetTrackingOptionsError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateConfigurationSetTrackingOptionsError
Auto Trait Implementations§
impl Freeze for UpdateConfigurationSetTrackingOptionsError
impl RefUnwindSafe for UpdateConfigurationSetTrackingOptionsError
impl Send for UpdateConfigurationSetTrackingOptionsError
impl Sync for UpdateConfigurationSetTrackingOptionsError
impl Unpin for UpdateConfigurationSetTrackingOptionsError
impl UnsafeUnpin for UpdateConfigurationSetTrackingOptionsError
impl UnwindSafe for UpdateConfigurationSetTrackingOptionsError
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