pub enum CopyDBClusterSnapshotError {
DBClusterSnapshotAlreadyExistsFault(String),
DBClusterSnapshotNotFoundFault(String),
InvalidDBClusterSnapshotStateFault(String),
InvalidDBClusterStateFault(String),
KMSKeyNotAccessibleFault(String),
SnapshotQuotaExceededFault(String),
}
Expand description
Errors returned by CopyDBClusterSnapshot
Variants§
DBClusterSnapshotAlreadyExistsFault(String)
You already have a cluster snapshot with the given identifier.
DBClusterSnapshotNotFoundFault(String)
DBClusterSnapshotIdentifier
doesn't refer to an existing cluster snapshot.
InvalidDBClusterSnapshotStateFault(String)
The provided value isn't a valid cluster snapshot state.
InvalidDBClusterStateFault(String)
The cluster isn't in a valid state.
KMSKeyNotAccessibleFault(String)
An error occurred when accessing an AWS KMS key.
SnapshotQuotaExceededFault(String)
The request would cause you to exceed the allowed number of snapshots.
Implementations§
Source§impl CopyDBClusterSnapshotError
impl CopyDBClusterSnapshotError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CopyDBClusterSnapshotError>
Trait Implementations§
Source§impl Debug for CopyDBClusterSnapshotError
impl Debug for CopyDBClusterSnapshotError
Source§impl Display for CopyDBClusterSnapshotError
impl Display for CopyDBClusterSnapshotError
Source§impl Error for CopyDBClusterSnapshotError
impl Error for CopyDBClusterSnapshotError
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()
impl StructuralPartialEq for CopyDBClusterSnapshotError
Auto Trait Implementations§
impl Freeze for CopyDBClusterSnapshotError
impl RefUnwindSafe for CopyDBClusterSnapshotError
impl Send for CopyDBClusterSnapshotError
impl Sync for CopyDBClusterSnapshotError
impl Unpin for CopyDBClusterSnapshotError
impl UnwindSafe for CopyDBClusterSnapshotError
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