Reset Cache Parameter Group
elasticache_reset_cache_parameter_group | R Documentation |
Modifies the parameters of a cache parameter group to the engine or system default value¶
Description¶
Modifies the parameters of a cache parameter group to the engine or
system default value. You can reset specific parameters by submitting a
list of parameter names. To reset the entire cache parameter group,
specify the ResetAllParameters
and CacheParameterGroupName
parameters.
Usage¶
elasticache_reset_cache_parameter_group(CacheParameterGroupName,
ResetAllParameters, ParameterNameValues)
Arguments¶
CacheParameterGroupName |
[required] The name of the cache parameter group to reset. |
ResetAllParameters |
If Valid values: |
ParameterNameValues |
An array of parameter names to reset to their default values. If
|
Value¶
A list with the following syntax:
list(
CacheParameterGroupName = "string"
)
Request syntax¶
svc$reset_cache_parameter_group(
CacheParameterGroupName = "string",
ResetAllParameters = TRUE|FALSE,
ParameterNameValues = list(
list(
ParameterName = "string",
ParameterValue = "string"
)
)
)
Examples¶
## Not run:
# Modifies the parameters of a cache parameter group to the engine or
# system default value.
svc$reset_cache_parameter_group(
CacheParameterGroupName = "custom-mem1-4",
ResetAllParameters = TRUE
)
## End(Not run)