pub enum DescribeExportError {
ExportNotFound(String),
InternalServerError(String),
LimitExceeded(String),
}
Expand description
Errors returned by DescribeExport
Variants§
ExportNotFound(String)
The specified export was not found.
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 DescribeExportError
impl DescribeExportError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DescribeExportError>
Trait Implementations§
Source§impl Debug for DescribeExportError
impl Debug for DescribeExportError
Source§impl Display for DescribeExportError
impl Display for DescribeExportError
Source§impl Error for DescribeExportError
impl Error for DescribeExportError
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 DescribeExportError
impl PartialEq for DescribeExportError
impl StructuralPartialEq for DescribeExportError
Auto Trait Implementations§
impl Freeze for DescribeExportError
impl RefUnwindSafe for DescribeExportError
impl Send for DescribeExportError
impl Sync for DescribeExportError
impl Unpin for DescribeExportError
impl UnwindSafe for DescribeExportError
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