Enum rusoto_dynamodb::BatchGetItemError[][src]

pub enum BatchGetItemError {
    InternalServerError(String),
    ProvisionedThroughputExceeded(String),
    ResourceNotFound(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by BatchGetItem

Variants

An error occurred on the server side.

Your request rate is too high. The AWS SDKs for DynamoDB automatically retry requests that receive this exception. Your request is eventually successful, unless your retry queue is too large to finish. Reduce the frequency of requests and use exponential backoff. For more information, go to Error Retries and Exponential Backoff in the Amazon DynamoDB Developer Guide.

The operation tried to access a nonexistent table or index. The resource might not be specified correctly, or its status might not be ACTIVE.

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

Trait Implementations

impl Debug for BatchGetItemError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for BatchGetItemError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<Error> for BatchGetItemError
[src]

Performs the conversion.

impl From<CredentialsError> for BatchGetItemError
[src]

Performs the conversion.

impl From<HttpDispatchError> for BatchGetItemError
[src]

Performs the conversion.

impl From<Error> for BatchGetItemError
[src]

Performs the conversion.

impl Display for BatchGetItemError
[src]

Formats the value using the given formatter. Read more

impl Error for BatchGetItemError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations