Enum rusoto_dynamodb::QueryError [] [src]

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

Errors returned by Query

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

[src]

Trait Implementations

impl Debug for QueryError
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for QueryError
[src]

[src]

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

[src]

This method tests for !=.

impl From<Error> for QueryError
[src]

[src]

Performs the conversion.

impl From<CredentialsError> for QueryError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for QueryError
[src]

[src]

Performs the conversion.

impl From<Error> for QueryError
[src]

[src]

Performs the conversion.

impl Display for QueryError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for QueryError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

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

Auto Trait Implementations

impl Send for QueryError

impl Sync for QueryError