pub enum ModifyClusterSnapshotError {
ClusterSnapshotNotFoundFault(String),
InvalidClusterSnapshotStateFault(String),
InvalidRetentionPeriodFault(String),
}
Expand description
Errors returned by ModifyClusterSnapshot
Variants§
ClusterSnapshotNotFoundFault(String)
The snapshot identifier does not refer to an existing cluster snapshot.
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 ModifyClusterSnapshotError
impl ModifyClusterSnapshotError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ModifyClusterSnapshotError>
Trait Implementations§
Source§impl Debug for ModifyClusterSnapshotError
impl Debug for ModifyClusterSnapshotError
Source§impl Display for ModifyClusterSnapshotError
impl Display for ModifyClusterSnapshotError
Source§impl Error for ModifyClusterSnapshotError
impl Error for ModifyClusterSnapshotError
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 ModifyClusterSnapshotError
Auto Trait Implementations§
impl Freeze for ModifyClusterSnapshotError
impl RefUnwindSafe for ModifyClusterSnapshotError
impl Send for ModifyClusterSnapshotError
impl Sync for ModifyClusterSnapshotError
impl Unpin for ModifyClusterSnapshotError
impl UnwindSafe for ModifyClusterSnapshotError
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