Struct aws_sdk_dynamodb::types::error::LimitExceededException
source · #[non_exhaustive]pub struct LimitExceededException {
pub message: Option<String>,
/* private fields */
}
Expand description
There is no limit to the number of daily on-demand backups that can be taken.
For most purposes, up to 500 simultaneous table operations are allowed per account. These operations include CreateTable
, UpdateTable
, DeleteTable
,UpdateTimeToLive
, RestoreTableFromBackup
, and RestoreTableToPointInTime
.
When you are creating a table with one or more secondary indexes, you can have up to 250 such requests running at a time. However, if the table or index specifications are complex, then DynamoDB might temporarily reduce the number of concurrent operations.
When importing into DynamoDB, up to 50 simultaneous import table operations are allowed per account.
There is a soft account quota of 2,500 tables.
GetRecords was called with a value of more than 1000 for the limit request parameter.
More than 2 processes are reading from the same streams shard at the same time. Exceeding this limit may result in request throttling.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.message: Option<String>
Too many operations for a given subscriber.
Implementations§
source§impl LimitExceededException
impl LimitExceededException
sourcepub fn builder() -> LimitExceededExceptionBuilder
pub fn builder() -> LimitExceededExceptionBuilder
Creates a new builder-style object to manufacture LimitExceededException
.
Trait Implementations§
source§impl Clone for LimitExceededException
impl Clone for LimitExceededException
source§fn clone(&self) -> LimitExceededException
fn clone(&self) -> LimitExceededException
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for LimitExceededException
impl Debug for LimitExceededException
source§impl Display for LimitExceededException
impl Display for LimitExceededException
source§impl Error for LimitExceededException
impl Error for LimitExceededException
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
source§impl PartialEq for LimitExceededException
impl PartialEq for LimitExceededException
source§fn eq(&self, other: &LimitExceededException) -> bool
fn eq(&self, other: &LimitExceededException) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl ProvideErrorMetadata for LimitExceededException
impl ProvideErrorMetadata for LimitExceededException
source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
source§impl RequestId for LimitExceededException
impl RequestId for LimitExceededException
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for LimitExceededException
Auto Trait Implementations§
impl Freeze for LimitExceededException
impl RefUnwindSafe for LimitExceededException
impl Send for LimitExceededException
impl Sync for LimitExceededException
impl Unpin for LimitExceededException
impl UnwindSafe for LimitExceededException
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more