#[non_exhaustive]
pub enum ModifyCacheParameterGroupErrorKind {
CacheParameterGroupNotFoundFault(CacheParameterGroupNotFoundFault),
InvalidCacheParameterGroupStateFault(InvalidCacheParameterGroupStateFault),
InvalidGlobalReplicationGroupStateFault(InvalidGlobalReplicationGroupStateFault),
InvalidParameterCombinationException(InvalidParameterCombinationException),
InvalidParameterValueException(InvalidParameterValueException),
Unhandled(Unhandled),
}
Expand description
Types of errors that can occur for the ModifyCacheParameterGroup
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
CacheParameterGroupNotFoundFault(CacheParameterGroupNotFoundFault)
The requested cache parameter group name does not refer to an existing cache parameter group.
InvalidCacheParameterGroupStateFault(InvalidCacheParameterGroupStateFault)
The current state of the cache parameter group does not allow the requested operation to occur.
InvalidGlobalReplicationGroupStateFault(InvalidGlobalReplicationGroupStateFault)
The Global datastore is not available or in primary-only state.
InvalidParameterCombinationException(InvalidParameterCombinationException)
Two or more incompatible parameters were specified.
InvalidParameterValueException(InvalidParameterValueException)
The value for a parameter is invalid.
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.