Enum aws_sdk_dax::error::UpdateClusterErrorKind
source · #[non_exhaustive]
pub enum UpdateClusterErrorKind {
ClusterNotFoundFault(ClusterNotFoundFault),
InvalidClusterStateFault(InvalidClusterStateFault),
InvalidParameterCombinationException(InvalidParameterCombinationException),
InvalidParameterGroupStateFault(InvalidParameterGroupStateFault),
InvalidParameterValueException(InvalidParameterValueException),
ParameterGroupNotFoundFault(ParameterGroupNotFoundFault),
ServiceLinkedRoleNotFoundFault(ServiceLinkedRoleNotFoundFault),
Unhandled(Unhandled),
}
Expand description
Types of errors that can occur for the UpdateCluster
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.
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.
ParameterGroupNotFoundFault(ParameterGroupNotFoundFault)
The specified parameter group does not exist.
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.