Enum rusoto_ses::CreateConfigurationSetEventDestinationError[][src]

pub enum CreateConfigurationSetEventDestinationError {
    ConfigurationSetDoesNotExist(String),
    EventDestinationAlreadyExists(String),
    InvalidCloudWatchDestination(String),
    InvalidFirehoseDestination(String),
    InvalidSNSDestination(String),
    LimitExceeded(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by CreateConfigurationSetEventDestination

Variants

Indicates that the configuration set does not exist.

Indicates that the event destination could not be created because of a naming conflict.

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.

Indicates that a resource could not be created because of service limits. For a list of Amazon SES limits, see the Amazon SES Developer Guide.

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

Trait Implementations

impl Debug for CreateConfigurationSetEventDestinationError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for CreateConfigurationSetEventDestinationError
[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 CreateConfigurationSetEventDestinationError
[src]

Performs the conversion.

impl From<CredentialsError> for CreateConfigurationSetEventDestinationError
[src]

Performs the conversion.

impl From<HttpDispatchError> for CreateConfigurationSetEventDestinationError
[src]

impl From<Error> for CreateConfigurationSetEventDestinationError
[src]

Performs the conversion.

impl Display for CreateConfigurationSetEventDestinationError
[src]

Formats the value using the given formatter. Read more

impl Error for CreateConfigurationSetEventDestinationError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations