#[non_exhaustive]
pub enum UpdateConfigurationSetEventDestinationErrorKind {
ConfigurationSetDoesNotExistException(ConfigurationSetDoesNotExistException),
EventDestinationDoesNotExistException(EventDestinationDoesNotExistException),
InvalidCloudWatchDestinationException(InvalidCloudWatchDestinationException),
InvalidFirehoseDestinationException(InvalidFirehoseDestinationException),
InvalidSnsDestinationException(InvalidSnsDestinationException),
Unhandled(Unhandled),
}
Expand description
Types of errors that can occur for the UpdateConfigurationSetEventDestination
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
ConfigurationSetDoesNotExistException(ConfigurationSetDoesNotExistException)
Indicates that the configuration set does not exist.
EventDestinationDoesNotExistException(EventDestinationDoesNotExistException)
Indicates that the event destination does not exist.
InvalidCloudWatchDestinationException(InvalidCloudWatchDestinationException)
Indicates that the Amazon CloudWatch destination is invalid. See the error message for details.
InvalidFirehoseDestinationException(InvalidFirehoseDestinationException)
Indicates that the Amazon Kinesis Firehose destination is invalid. See the error message for details.
InvalidSnsDestinationException(InvalidSnsDestinationException)
Indicates that the Amazon Simple Notification Service (Amazon SNS) destination is invalid. See the error message for details.
Unhandled(Unhandled)
An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
When logging an error from the SDK, it is recommended that you either wrap the error in
DisplayErrorContext
, use another
error reporter library that visits the error’s cause/source chain, or call
Error::source
for more details about the underlying cause.