#[non_exhaustive]
pub enum CreateGlobalClusterErrorKind {
DbClusterNotFoundFault(DbClusterNotFoundFault),
GlobalClusterAlreadyExistsFault(GlobalClusterAlreadyExistsFault),
GlobalClusterQuotaExceededFault(GlobalClusterQuotaExceededFault),
InvalidDbClusterStateFault(InvalidDbClusterStateFault),
Unhandled(Box<dyn Error + Send + Sync + 'static>),
}Expand description
Types of errors that can occur for the CreateGlobalCluster operation.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
DbClusterNotFoundFault(DbClusterNotFoundFault)
DBClusterIdentifier doesn't refer to an existing DB cluster.
GlobalClusterAlreadyExistsFault(GlobalClusterAlreadyExistsFault)
The GlobalClusterIdentifier already exists. Choose a new global database identifier (unique name) to create a new global database cluster.
GlobalClusterQuotaExceededFault(GlobalClusterQuotaExceededFault)
The number of global database clusters for this account is already at the maximum allowed.
InvalidDbClusterStateFault(InvalidDbClusterStateFault)
The requested operation can't be performed while the cluster is in this state.
Unhandled(Box<dyn Error + Send + Sync + 'static>)
An unexpected error, e.g. invalid JSON returned by the service or an unknown error code
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for CreateGlobalClusterErrorKind
impl Send for CreateGlobalClusterErrorKind
impl Sync for CreateGlobalClusterErrorKind
impl Unpin for CreateGlobalClusterErrorKind
impl !UnwindSafe for CreateGlobalClusterErrorKind
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more