#[non_exhaustive]
pub enum CreateDeliveryStreamErrorKind {
InvalidArgumentException(InvalidArgumentException),
InvalidKmsResourceException(InvalidKmsResourceException),
LimitExceededException(LimitExceededException),
ResourceInUseException(ResourceInUseException),
Unhandled(Box<dyn Error + Send + Sync + 'static>),
}
Expand description
Types of errors that can occur for the CreateDeliveryStream
operation.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
InvalidArgumentException(InvalidArgumentException)
Tuple Fields
The specified input parameter has a value that is not valid.
InvalidKmsResourceException(InvalidKmsResourceException)
Tuple Fields
Kinesis Data Firehose throws this exception when an attempt to put records or to start or stop delivery stream encryption fails. This happens when the KMS service throws one of the following exception types: AccessDeniedException
, InvalidStateException
, DisabledException
, or NotFoundException
.
LimitExceededException(LimitExceededException)
Tuple Fields
You have already reached the limit for a requested resource.
ResourceInUseException(ResourceInUseException)
Tuple Fields
The resource is already in use and not available for this operation.
Unhandled(Box<dyn Error + Send + Sync + 'static>)
An unexpected error, e.g. invalid JSON returned by the service or an unknown error code
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for CreateDeliveryStreamErrorKind
impl Send for CreateDeliveryStreamErrorKind
impl Sync for CreateDeliveryStreamErrorKind
impl Unpin for CreateDeliveryStreamErrorKind
impl !UnwindSafe for CreateDeliveryStreamErrorKind
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more