#[non_exhaustive]
pub enum IncreaseReplicationFactorErrorKind {
ClusterNotFoundFault(ClusterNotFoundFault),
InsufficientClusterCapacityFault(InsufficientClusterCapacityFault),
InvalidClusterStateFault(InvalidClusterStateFault),
InvalidParameterCombinationException(InvalidParameterCombinationException),
InvalidParameterValueException(InvalidParameterValueException),
InvalidVpcNetworkStateFault(InvalidVpcNetworkStateFault),
NodeQuotaForClusterExceededFault(NodeQuotaForClusterExceededFault),
NodeQuotaForCustomerExceededFault(NodeQuotaForCustomerExceededFault),
ServiceLinkedRoleNotFoundFault(ServiceLinkedRoleNotFoundFault),
Unhandled(Unhandled),
}
Expand description
Types of errors that can occur for the IncreaseReplicationFactor
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
ClusterNotFoundFault(ClusterNotFoundFault)
The requested cluster ID does not refer to an existing DAX cluster.
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.
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.
ServiceLinkedRoleNotFoundFault(ServiceLinkedRoleNotFoundFault)
The specified service linked role (SLR) was not found.
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.