pub enum DeleteSnapshotCopyGrantError {
InvalidSnapshotCopyGrantStateFault(String),
SnapshotCopyGrantNotFoundFault(String),
}Expand description
Errors returned by DeleteSnapshotCopyGrant
Variants§
InvalidSnapshotCopyGrantStateFault(String)
The snapshot copy grant can't be deleted because it is used by one or more clusters.
SnapshotCopyGrantNotFoundFault(String)
The specified snapshot copy grant can't be found. Make sure that the name is typed correctly and that the grant exists in the destination region.
Implementations§
Trait Implementations§
Source§impl Debug for DeleteSnapshotCopyGrantError
impl Debug for DeleteSnapshotCopyGrantError
Source§impl Error for DeleteSnapshotCopyGrantError
impl Error for DeleteSnapshotCopyGrantError
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 DeleteSnapshotCopyGrantError
impl PartialEq for DeleteSnapshotCopyGrantError
Source§fn eq(&self, other: &DeleteSnapshotCopyGrantError) -> bool
fn eq(&self, other: &DeleteSnapshotCopyGrantError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeleteSnapshotCopyGrantError
Auto Trait Implementations§
impl Freeze for DeleteSnapshotCopyGrantError
impl RefUnwindSafe for DeleteSnapshotCopyGrantError
impl Send for DeleteSnapshotCopyGrantError
impl Sync for DeleteSnapshotCopyGrantError
impl Unpin for DeleteSnapshotCopyGrantError
impl UnwindSafe for DeleteSnapshotCopyGrantError
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