pub enum CreateClusterSnapshotError {
ClusterNotFoundFault(String),
ClusterSnapshotAlreadyExistsFault(String),
ClusterSnapshotQuotaExceededFault(String),
InvalidClusterStateFault(String),
InvalidRetentionPeriodFault(String),
InvalidTagFault(String),
TagLimitExceededFault(String),
}
Expand description
Errors returned by CreateClusterSnapshot
Variants§
ClusterNotFoundFault(String)
The ClusterIdentifier
parameter does not refer to an existing cluster.
ClusterSnapshotAlreadyExistsFault(String)
The value specified as a snapshot identifier is already used by an existing snapshot.
ClusterSnapshotQuotaExceededFault(String)
The request would result in the user exceeding the allowed number of cluster snapshots.
InvalidClusterStateFault(String)
The specified cluster is not in the available
state.
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.
InvalidTagFault(String)
The tag is invalid.
TagLimitExceededFault(String)
You have exceeded the number of tags allowed.
Implementations§
Source§impl CreateClusterSnapshotError
impl CreateClusterSnapshotError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateClusterSnapshotError>
Trait Implementations§
Source§impl Debug for CreateClusterSnapshotError
impl Debug for CreateClusterSnapshotError
Source§impl Display for CreateClusterSnapshotError
impl Display for CreateClusterSnapshotError
Source§impl Error for CreateClusterSnapshotError
impl Error for CreateClusterSnapshotError
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 CreateClusterSnapshotError
Auto Trait Implementations§
impl Freeze for CreateClusterSnapshotError
impl RefUnwindSafe for CreateClusterSnapshotError
impl Send for CreateClusterSnapshotError
impl Sync for CreateClusterSnapshotError
impl Unpin for CreateClusterSnapshotError
impl UnwindSafe for CreateClusterSnapshotError
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