Enum rusoto_ses::UpdateConfigurationSetTrackingOptionsError[][src]

pub enum UpdateConfigurationSetTrackingOptionsError {
    ConfigurationSetDoesNotExist(String),
    InvalidTrackingOptions(String),
    TrackingOptionsDoesNotExist(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by UpdateConfigurationSetTrackingOptions

Variants

Indicates that the configuration set does not exist.

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.

Indicates that the TrackingOptions object you specified does not exist.

An error occurred dispatching the HTTP request

An error was encountered with AWS credentials.

A validation error occurred. Details from AWS are provided.

An unknown error occurred. The raw HTTP response is provided.

Methods

impl UpdateConfigurationSetTrackingOptionsError
[src]

Trait Implementations

impl Debug for UpdateConfigurationSetTrackingOptionsError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for UpdateConfigurationSetTrackingOptionsError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<XmlParseError> for UpdateConfigurationSetTrackingOptionsError
[src]

Performs the conversion.

impl From<CredentialsError> for UpdateConfigurationSetTrackingOptionsError
[src]

Performs the conversion.

impl From<HttpDispatchError> for UpdateConfigurationSetTrackingOptionsError
[src]

impl From<Error> for UpdateConfigurationSetTrackingOptionsError
[src]

Performs the conversion.

impl Display for UpdateConfigurationSetTrackingOptionsError
[src]

Formats the value using the given formatter. Read more

impl Error for UpdateConfigurationSetTrackingOptionsError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

Auto Trait Implementations