[][src]Enum rusoto_dynamodb::UpdateGlobalTableSettingsError

pub enum UpdateGlobalTableSettingsError {
    GlobalTableNotFound(String),
    IndexNotFound(String),
    InternalServerError(String),
    LimitExceeded(String),
    ReplicaNotFound(String),
    ResourceInUse(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    ParseError(String),
    Unknown(BufferedHttpResponse),
}

Errors returned by UpdateGlobalTableSettings

Variants

The specified global table does not exist.

The operation tried to access a nonexistent index.

An error occurred on the server side.

There is no limit to the number of daily on-demand backups that can be taken.

Up to 10 simultaneous table operations are allowed per account. These operations include CreateTable, UpdateTable, DeleteTable,UpdateTimeToLive, RestoreTableFromBackup, and RestoreTableToPointInTime.

For tables with secondary indexes, only one of those tables can be in the CREATING state at any point in time. Do not attempt to create more than one such table simultaneously.

The total limit of tables in the ACTIVE state is 250.

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

The operation conflicts with the resource's availability. For example, you attempted to recreate an existing table, or tried to delete a table currently in the CREATING state.

An error occurred dispatching the HTTP request

An error was encountered with AWS credentials.

A validation error occurred. Details from AWS are provided.

An error occurred parsing the response payload.

An unknown error occurred. The raw HTTP response is provided.

Methods

impl UpdateGlobalTableSettingsError
[src]

Trait Implementations

impl From<Error> for UpdateGlobalTableSettingsError
[src]

impl From<CredentialsError> for UpdateGlobalTableSettingsError
[src]

impl From<HttpDispatchError> for UpdateGlobalTableSettingsError
[src]

impl From<Error> for UpdateGlobalTableSettingsError
[src]

impl PartialEq<UpdateGlobalTableSettingsError> for UpdateGlobalTableSettingsError
[src]

impl Debug for UpdateGlobalTableSettingsError
[src]

impl Display for UpdateGlobalTableSettingsError
[src]

impl Error for UpdateGlobalTableSettingsError
[src]

Deprecating in 1.33.0

: replaced by Error::source, which can support downcasting

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

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T