pub enum ModifyDBClusterSnapshotAttributeError {
DBClusterSnapshotNotFoundFault(String),
InvalidDBClusterSnapshotStateFault(String),
SharedSnapshotQuotaExceededFault(String),
}
Expand description
Errors returned by ModifyDBClusterSnapshotAttribute
Variants§
DBClusterSnapshotNotFoundFault(String)
DBClusterSnapshotIdentifier
doesn't refer to an existing DB cluster snapshot.
InvalidDBClusterSnapshotStateFault(String)
The supplied value isn't a valid DB cluster snapshot state.
You have exceeded the maximum number of accounts that you can share a manual DB snapshot with.
Implementations§
Trait Implementations§
Source§impl Error for ModifyDBClusterSnapshotAttributeError
impl Error for ModifyDBClusterSnapshotAttributeError
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 ModifyDBClusterSnapshotAttributeError
impl PartialEq for ModifyDBClusterSnapshotAttributeError
Source§fn eq(&self, other: &ModifyDBClusterSnapshotAttributeError) -> bool
fn eq(&self, other: &ModifyDBClusterSnapshotAttributeError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ModifyDBClusterSnapshotAttributeError
Auto Trait Implementations§
impl Freeze for ModifyDBClusterSnapshotAttributeError
impl RefUnwindSafe for ModifyDBClusterSnapshotAttributeError
impl Send for ModifyDBClusterSnapshotAttributeError
impl Sync for ModifyDBClusterSnapshotAttributeError
impl Unpin for ModifyDBClusterSnapshotAttributeError
impl UnwindSafe for ModifyDBClusterSnapshotAttributeError
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