Enum rusoto_dynamodb::UpdateGlobalTableError[][src]

pub enum UpdateGlobalTableError {
    GlobalTableNotFound(String),
    InternalServerError(String),
    ReplicaAlreadyExists(String),
    ReplicaNotFound(String),
    TableNotFound(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by UpdateGlobalTable

Variants

The specified global table does not exist.

An error occurred on the server side.

The specified replica is already part of the global table.

The specified replica is no longer part of the global table.

A source table with the name TableName does not currently exist within the subscriber's account.

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

Trait Implementations

impl Debug for UpdateGlobalTableError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for UpdateGlobalTableError
[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 UpdateGlobalTableError
[src]

Performs the conversion.

impl From<CredentialsError> for UpdateGlobalTableError
[src]

Performs the conversion.

impl From<HttpDispatchError> for UpdateGlobalTableError
[src]

Performs the conversion.

impl From<Error> for UpdateGlobalTableError
[src]

Performs the conversion.

impl Display for UpdateGlobalTableError
[src]

Formats the value using the given formatter. Read more

impl Error for UpdateGlobalTableError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations