#[non_exhaustive]
pub enum PutRecordBatchErrorKind {
InvalidArgumentException(InvalidArgumentException),
InvalidKmsResourceException(InvalidKmsResourceException),
ResourceNotFoundException(ResourceNotFoundException),
ServiceUnavailableException(ServiceUnavailableException),
Unhandled(Box<dyn Error + Send + Sync + 'static>),
}
Expand description
Types of errors that can occur for the PutRecordBatch
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
.
ResourceNotFoundException(ResourceNotFoundException)
Tuple Fields
The specified resource could not be found.
ServiceUnavailableException(ServiceUnavailableException)
The service is unavailable. Back off and retry the operation. If you continue to see the exception, throughput limits for the delivery stream may have been exceeded. For more information about limits and how to request an increase, see Amazon Kinesis Data Firehose Limits.
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 PutRecordBatchErrorKind
impl Send for PutRecordBatchErrorKind
impl Sync for PutRecordBatchErrorKind
impl Unpin for PutRecordBatchErrorKind
impl !UnwindSafe for PutRecordBatchErrorKind
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