Enum aws_sdk_rds::error::CreateGlobalClusterErrorKind [−][src]
#[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)
Tuple Fields
DBClusterIdentifier
doesn't refer to an existing DB cluster.
GlobalClusterAlreadyExistsFault(GlobalClusterAlreadyExistsFault)
Tuple Fields
The GlobalClusterIdentifier
already exists. Choose a new global database identifier (unique name) to create a new global database cluster.
GlobalClusterQuotaExceededFault(GlobalClusterQuotaExceededFault)
Tuple Fields
The number of global database clusters for this account is already at the maximum allowed.
InvalidDbClusterStateFault(InvalidDbClusterStateFault)
Tuple Fields
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