pub enum UntagResourceError {
InternalServerError(String),
LimitExceeded(String),
ResourceInUse(String),
ResourceNotFound(String),
}
Expand description
Errors returned by UntagResource
Variants
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.
ResourceInUse(String)
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.
ResourceNotFound(String)
The operation tried to access a nonexistent table or index. The resource might not be specified correctly, or its status might not be ACTIVE
.
Implementations
sourceimpl UntagResourceError
impl UntagResourceError
pub fn from_response(
res: BufferedHttpResponse
) -> RusotoError<UntagResourceError>
Trait Implementations
sourceimpl Debug for UntagResourceError
impl Debug for UntagResourceError
sourceimpl Display for UntagResourceError
impl Display for UntagResourceError
sourceimpl Error for UntagResourceError
impl Error for UntagResourceError
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<UntagResourceError> for UntagResourceError
impl PartialEq<UntagResourceError> for UntagResourceError
sourcefn eq(&self, other: &UntagResourceError) -> bool
fn eq(&self, other: &UntagResourceError) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &UntagResourceError) -> bool
fn ne(&self, other: &UntagResourceError) -> bool
This method tests for !=
.
impl StructuralPartialEq for UntagResourceError
Auto Trait Implementations
impl RefUnwindSafe for UntagResourceError
impl Send for UntagResourceError
impl Sync for UntagResourceError
impl Unpin for UntagResourceError
impl UnwindSafe for UntagResourceError
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