pub enum BatchDeleteClusterSnapshotsError {
BatchDeleteRequestSizeExceededFault(String),
}
Expand description
Errors returned by BatchDeleteClusterSnapshots
Variants§
BatchDeleteRequestSizeExceededFault(String)
The maximum number for a batch delete of snapshots has been reached. The limit is 100.
Implementations§
Trait Implementations§
Source§impl Error for BatchDeleteClusterSnapshotsError
impl Error for BatchDeleteClusterSnapshotsError
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 BatchDeleteClusterSnapshotsError
impl PartialEq for BatchDeleteClusterSnapshotsError
Source§fn eq(&self, other: &BatchDeleteClusterSnapshotsError) -> bool
fn eq(&self, other: &BatchDeleteClusterSnapshotsError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for BatchDeleteClusterSnapshotsError
Auto Trait Implementations§
impl Freeze for BatchDeleteClusterSnapshotsError
impl RefUnwindSafe for BatchDeleteClusterSnapshotsError
impl Send for BatchDeleteClusterSnapshotsError
impl Sync for BatchDeleteClusterSnapshotsError
impl Unpin for BatchDeleteClusterSnapshotsError
impl UnwindSafe for BatchDeleteClusterSnapshotsError
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