pub enum CreateDBClusterSnapshotError {
DBClusterNotFoundFault(String),
DBClusterSnapshotAlreadyExistsFault(String),
InvalidDBClusterSnapshotStateFault(String),
InvalidDBClusterStateFault(String),
SnapshotQuotaExceededFault(String),
}
Expand description
Errors returned by CreateDBClusterSnapshot
Variants§
DBClusterNotFoundFault(String)
DBClusterIdentifier
doesn't refer to an existing cluster.
DBClusterSnapshotAlreadyExistsFault(String)
You already have a cluster snapshot with the given identifier.
InvalidDBClusterSnapshotStateFault(String)
The provided value isn't a valid cluster snapshot state.
InvalidDBClusterStateFault(String)
The cluster isn't in a valid state.
SnapshotQuotaExceededFault(String)
The request would cause you to exceed the allowed number of snapshots.
Implementations§
Trait Implementations§
Source§impl Debug for CreateDBClusterSnapshotError
impl Debug for CreateDBClusterSnapshotError
Source§impl Error for CreateDBClusterSnapshotError
impl Error for CreateDBClusterSnapshotError
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 CreateDBClusterSnapshotError
impl PartialEq for CreateDBClusterSnapshotError
Source§fn eq(&self, other: &CreateDBClusterSnapshotError) -> bool
fn eq(&self, other: &CreateDBClusterSnapshotError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateDBClusterSnapshotError
Auto Trait Implementations§
impl Freeze for CreateDBClusterSnapshotError
impl RefUnwindSafe for CreateDBClusterSnapshotError
impl Send for CreateDBClusterSnapshotError
impl Sync for CreateDBClusterSnapshotError
impl Unpin for CreateDBClusterSnapshotError
impl UnwindSafe for CreateDBClusterSnapshotError
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