pub enum ListExportsError {
InternalServerError(String),
LimitExceeded(String),
}
Expand description
Errors returned by ListExports
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.
Implementations§
Source§impl ListExportsError
impl ListExportsError
pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ListExportsError>
Trait Implementations§
Source§impl Debug for ListExportsError
impl Debug for ListExportsError
Source§impl Display for ListExportsError
impl Display for ListExportsError
Source§impl Error for ListExportsError
impl Error for ListExportsError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for ListExportsError
impl PartialEq for ListExportsError
impl StructuralPartialEq for ListExportsError
Auto Trait Implementations§
impl Freeze for ListExportsError
impl RefUnwindSafe for ListExportsError
impl Send for ListExportsError
impl Sync for ListExportsError
impl Unpin for ListExportsError
impl UnwindSafe for ListExportsError
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
Mutably borrows from an owned value. Read more