pub enum CopyClusterSnapshotError {
ClusterSnapshotAlreadyExistsFault(String),
ClusterSnapshotNotFoundFault(String),
ClusterSnapshotQuotaExceededFault(String),
InvalidClusterSnapshotStateFault(String),
InvalidRetentionPeriodFault(String),
}
Expand description
Errors returned by CopyClusterSnapshot
Variants§
ClusterSnapshotAlreadyExistsFault(String)
The value specified as a snapshot identifier is already used by an existing snapshot.
ClusterSnapshotNotFoundFault(String)
The snapshot identifier does not refer to an existing cluster snapshot.
ClusterSnapshotQuotaExceededFault(String)
The request would result in the user exceeding the allowed number of cluster snapshots.
InvalidClusterSnapshotStateFault(String)
The specified cluster snapshot is not in the available
state, or other accounts are authorized to access the snapshot.
InvalidRetentionPeriodFault(String)
The retention period specified is either in the past or is not a valid value.
The value must be either -1 or an integer between 1 and 3,653.
Implementations§
Source§impl CopyClusterSnapshotError
impl CopyClusterSnapshotError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CopyClusterSnapshotError>
Trait Implementations§
Source§impl Debug for CopyClusterSnapshotError
impl Debug for CopyClusterSnapshotError
Source§impl Display for CopyClusterSnapshotError
impl Display for CopyClusterSnapshotError
Source§impl Error for CopyClusterSnapshotError
impl Error for CopyClusterSnapshotError
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 CopyClusterSnapshotError
impl PartialEq for CopyClusterSnapshotError
impl StructuralPartialEq for CopyClusterSnapshotError
Auto Trait Implementations§
impl Freeze for CopyClusterSnapshotError
impl RefUnwindSafe for CopyClusterSnapshotError
impl Send for CopyClusterSnapshotError
impl Sync for CopyClusterSnapshotError
impl Unpin for CopyClusterSnapshotError
impl UnwindSafe for CopyClusterSnapshotError
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