Type Alias vector::sinks::aws_kinesis::streams::KinesisError

source ·
pub type KinesisError = PutRecordsError;

Aliased Type§

enum KinesisError {
    KmsAccessDeniedException(KmsAccessDeniedException),
    KmsDisabledException(KmsDisabledException),
    AccessDeniedException(AccessDeniedException),
    KmsNotFoundException(KmsNotFoundException),
    KmsOptInRequired(KmsOptInRequired),
    KmsThrottlingException(KmsThrottlingException),
    ProvisionedThroughputExceededException(ProvisionedThroughputExceededException),
    InvalidArgumentException(InvalidArgumentException),
    KmsInvalidStateException(KmsInvalidStateException),
    ResourceNotFoundException(ResourceNotFoundException),
    Unhandled(Unhandled),
}

Variants§

§

KmsAccessDeniedException(KmsAccessDeniedException)

The ciphertext references a key that doesn't exist or that you don't have access to.

§

KmsDisabledException(KmsDisabledException)

The request was rejected because the specified customer master key (CMK) isn't enabled.

§

AccessDeniedException(AccessDeniedException)

Specifies that you do not have the permissions required to perform this operation.

§

KmsNotFoundException(KmsNotFoundException)

The request was rejected because the specified entity or resource can't be found.

§

KmsOptInRequired(KmsOptInRequired)

The Amazon Web Services access key ID needs a subscription for the service.

§

KmsThrottlingException(KmsThrottlingException)

The request was denied due to request throttling. For more information about throttling, see Limits in the Amazon Web Services Key Management Service Developer Guide.

§

ProvisionedThroughputExceededException(ProvisionedThroughputExceededException)

The request rate for the stream is too high, or the requested data is too large for the available throughput. Reduce the frequency or size of your requests. For more information, see Streams Limits in the Amazon Kinesis Data Streams Developer Guide, and Error Retries and Exponential Backoff in Amazon Web Services in the Amazon Web Services General Reference.

§

InvalidArgumentException(InvalidArgumentException)

A specified parameter exceeds its restrictions, is not supported, or can't be used. For more information, see the returned message.

§

KmsInvalidStateException(KmsInvalidStateException)

The request was rejected because the state of the specified resource isn't valid for this request. For more information, see How Key State Affects Use of a Customer Master Key in the Amazon Web Services Key Management Service Developer Guide.

§

ResourceNotFoundException(ResourceNotFoundException)

The requested resource could not be found. The stream might not be specified correctly.

§

Unhandled(Unhandled)

👎Deprecated: Matching Unhandled directly is not forwards compatible. Instead, match using a variable wildcard pattern and check .code():    err if err.code() == Some("SpecificExceptionCode") => { /* handle the error */ } See ProvideErrorMetadata for what information is available for the error.

An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).