pub enum RestoreTableFromBackupError {
BackupInUse(String),
BackupNotFound(String),
InternalServerError(String),
LimitExceeded(String),
TableAlreadyExists(String),
TableInUse(String),
}
Expand description
Errors returned by RestoreTableFromBackup
Variants
BackupInUse(String)
There is another ongoing conflicting backup control plane operation on the table. The backup is either being created, deleted or restored to a table.
BackupNotFound(String)
Backup not found for the given BackupARN.
InternalServerError(String)
An error occurred on the server side.
LimitExceeded(String)
There is no limit to the number of daily on-demand backups that can be taken.
Up to 50 simultaneous table operations are allowed per account. These operations include CreateTable
, UpdateTable
, DeleteTable
,UpdateTimeToLive
, RestoreTableFromBackup
, and RestoreTableToPointInTime
.
The only exception is when you are creating a table with one or more secondary indexes. You can have up to 25 such requests running at a time; however, if the table or index specifications are complex, DynamoDB might temporarily reduce the number of concurrent operations.
There is a soft account quota of 256 tables.
TableAlreadyExists(String)
A target table with the specified name already exists.
TableInUse(String)
A target table with the specified name is either being created or deleted.
Implementations
Trait Implementations
sourceimpl Debug for RestoreTableFromBackupError
impl Debug for RestoreTableFromBackupError
sourceimpl Display for RestoreTableFromBackupError
impl Display for RestoreTableFromBackupError
sourceimpl Error for RestoreTableFromBackupError
impl Error for RestoreTableFromBackupError
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
sourceimpl PartialEq<RestoreTableFromBackupError> for RestoreTableFromBackupError
impl PartialEq<RestoreTableFromBackupError> for RestoreTableFromBackupError
sourcefn eq(&self, other: &RestoreTableFromBackupError) -> bool
fn eq(&self, other: &RestoreTableFromBackupError) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &RestoreTableFromBackupError) -> bool
fn ne(&self, other: &RestoreTableFromBackupError) -> bool
This method tests for !=
.
impl StructuralPartialEq for RestoreTableFromBackupError
Auto Trait Implementations
impl RefUnwindSafe for RestoreTableFromBackupError
impl Send for RestoreTableFromBackupError
impl Sync for RestoreTableFromBackupError
impl Unpin for RestoreTableFromBackupError
impl UnwindSafe for RestoreTableFromBackupError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more