#[non_exhaustive]
pub enum CopyDBClusterSnapshotErrorKind {
DbClusterSnapshotAlreadyExistsFault(DbClusterSnapshotAlreadyExistsFault),
DbClusterSnapshotNotFoundFault(DbClusterSnapshotNotFoundFault),
InvalidDbClusterSnapshotStateFault(InvalidDbClusterSnapshotStateFault),
InvalidDbClusterStateFault(InvalidDbClusterStateFault),
KmsKeyNotAccessibleFault(KmsKeyNotAccessibleFault),
SnapshotQuotaExceededFault(SnapshotQuotaExceededFault),
Unhandled(Unhandled),
}
Expand description
Types of errors that can occur for the CopyDBClusterSnapshot
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
DbClusterSnapshotAlreadyExistsFault(DbClusterSnapshotAlreadyExistsFault)
You already have a cluster snapshot with the given identifier.
DbClusterSnapshotNotFoundFault(DbClusterSnapshotNotFoundFault)
DBClusterSnapshotIdentifier
doesn't refer to an existing cluster snapshot.
InvalidDbClusterSnapshotStateFault(InvalidDbClusterSnapshotStateFault)
The provided value isn't a valid cluster snapshot state.
InvalidDbClusterStateFault(InvalidDbClusterStateFault)
The cluster isn't in a valid state.
KmsKeyNotAccessibleFault(KmsKeyNotAccessibleFault)
An error occurred when accessing an KMS key.
SnapshotQuotaExceededFault(SnapshotQuotaExceededFault)
The request would cause you to exceed the allowed number of snapshots.
Unhandled(Unhandled)
An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
When logging an error from the SDK, it is recommended that you either wrap the error in
DisplayErrorContext
, use another
error reporter library that visits the error’s cause/source chain, or call
Error::source
for more details about the underlying cause.