pub enum DeleteDBClusterError {
DBClusterNotFoundFault(String),
DBClusterSnapshotAlreadyExistsFault(String),
InvalidDBClusterSnapshotStateFault(String),
InvalidDBClusterStateFault(String),
SnapshotQuotaExceededFault(String),
}
Expand description
Errors returned by DeleteDBCluster
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§
Source§impl DeleteDBClusterError
impl DeleteDBClusterError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DeleteDBClusterError>
Trait Implementations§
Source§impl Debug for DeleteDBClusterError
impl Debug for DeleteDBClusterError
Source§impl Display for DeleteDBClusterError
impl Display for DeleteDBClusterError
Source§impl Error for DeleteDBClusterError
impl Error for DeleteDBClusterError
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 DeleteDBClusterError
impl PartialEq for DeleteDBClusterError
impl StructuralPartialEq for DeleteDBClusterError
Auto Trait Implementations§
impl Freeze for DeleteDBClusterError
impl RefUnwindSafe for DeleteDBClusterError
impl Send for DeleteDBClusterError
impl Sync for DeleteDBClusterError
impl Unpin for DeleteDBClusterError
impl UnwindSafe for DeleteDBClusterError
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