Enum aws_sdk_dax::error::CreateClusterErrorKind
source · #[non_exhaustive]
pub enum CreateClusterErrorKind {
Show 16 variants
ClusterAlreadyExistsFault(ClusterAlreadyExistsFault),
ClusterQuotaForCustomerExceededFault(ClusterQuotaForCustomerExceededFault),
InsufficientClusterCapacityFault(InsufficientClusterCapacityFault),
InvalidClusterStateFault(InvalidClusterStateFault),
InvalidParameterCombinationException(InvalidParameterCombinationException),
InvalidParameterGroupStateFault(InvalidParameterGroupStateFault),
InvalidParameterValueException(InvalidParameterValueException),
InvalidVpcNetworkStateFault(InvalidVpcNetworkStateFault),
NodeQuotaForClusterExceededFault(NodeQuotaForClusterExceededFault),
NodeQuotaForCustomerExceededFault(NodeQuotaForCustomerExceededFault),
ParameterGroupNotFoundFault(ParameterGroupNotFoundFault),
ServiceLinkedRoleNotFoundFault(ServiceLinkedRoleNotFoundFault),
ServiceQuotaExceededException(ServiceQuotaExceededException),
SubnetGroupNotFoundFault(SubnetGroupNotFoundFault),
TagQuotaPerResourceExceeded(TagQuotaPerResourceExceeded),
Unhandled(Unhandled),
}
Expand description
Types of errors that can occur for the CreateCluster
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
ClusterAlreadyExistsFault(ClusterAlreadyExistsFault)
You already have a DAX cluster with the given identifier.
ClusterQuotaForCustomerExceededFault(ClusterQuotaForCustomerExceededFault)
You have attempted to exceed the maximum number of DAX clusters for your AWS account.
InsufficientClusterCapacityFault(InsufficientClusterCapacityFault)
There are not enough system resources to create the cluster you requested (or to resize an already-existing cluster).
InvalidClusterStateFault(InvalidClusterStateFault)
The requested DAX cluster is not in the available state.
InvalidParameterCombinationException(InvalidParameterCombinationException)
Two or more incompatible parameters were specified.
InvalidParameterGroupStateFault(InvalidParameterGroupStateFault)
One or more parameters in a parameter group are in an invalid state.
InvalidParameterValueException(InvalidParameterValueException)
The value for a parameter is invalid.
InvalidVpcNetworkStateFault(InvalidVpcNetworkStateFault)
The VPC network is in an invalid state.
NodeQuotaForClusterExceededFault(NodeQuotaForClusterExceededFault)
You have attempted to exceed the maximum number of nodes for a DAX cluster.
NodeQuotaForCustomerExceededFault(NodeQuotaForCustomerExceededFault)
You have attempted to exceed the maximum number of nodes for your AWS account.
ParameterGroupNotFoundFault(ParameterGroupNotFoundFault)
The specified parameter group does not exist.
ServiceLinkedRoleNotFoundFault(ServiceLinkedRoleNotFoundFault)
The specified service linked role (SLR) was not found.
ServiceQuotaExceededException(ServiceQuotaExceededException)
You have reached the maximum number of x509 certificates that can be created for encrypted clusters in a 30 day period. Contact AWS customer support to discuss options for continuing to create encrypted clusters.
SubnetGroupNotFoundFault(SubnetGroupNotFoundFault)
The requested subnet group name does not refer to an existing subnet group.
TagQuotaPerResourceExceeded(TagQuotaPerResourceExceeded)
You have exceeded the maximum number of tags for this DAX cluster.
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.