Enum rusoto_ses::UpdateConfigurationSetEventDestinationError [] [src]

pub enum UpdateConfigurationSetEventDestinationError {
    ConfigurationSetDoesNotExist(String),
    EventDestinationDoesNotExist(String),
    InvalidCloudWatchDestination(String),
    InvalidFirehoseDestination(String),
    InvalidSNSDestination(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by UpdateConfigurationSetEventDestination

Variants

Indicates that the configuration set does not exist.

Indicates that the event destination does not exist.

Indicates that the Amazon CloudWatch destination is invalid. See the error message for details.

Indicates that the Amazon Kinesis Firehose destination is invalid. See the error message for details.

Indicates that the Amazon Simple Notification Service (Amazon SNS) destination is invalid. See the error message for details.

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 UpdateConfigurationSetEventDestinationError
[src]

Trait Implementations

impl Debug for UpdateConfigurationSetEventDestinationError
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for UpdateConfigurationSetEventDestinationError
[src]

[src]

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

[src]

This method tests for !=.

impl From<XmlParseError> for UpdateConfigurationSetEventDestinationError
[src]

[src]

Performs the conversion.

impl From<CredentialsError> for UpdateConfigurationSetEventDestinationError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for UpdateConfigurationSetEventDestinationError
[src]

impl From<Error> for UpdateConfigurationSetEventDestinationError
[src]

[src]

Performs the conversion.

impl Display for UpdateConfigurationSetEventDestinationError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for UpdateConfigurationSetEventDestinationError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

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

Auto Trait Implementations