Learn R Programming

paws.database (version 0.1.12)

elasticache_reset_cache_parameter_group: 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)

Value

A list with the following syntax:

list(
  CacheParameterGroupName = "string"
)

Arguments

CacheParameterGroupName

[required] The name of the cache parameter group to reset.

ResetAllParameters

If true, all parameters in the cache parameter group are reset to their default values. If false, only the parameters listed by ParameterNameValues are reset to their default values.

Valid values: true | false

ParameterNameValues

An array of parameter names to reset to their default values. If ResetAllParameters is true, do not use ParameterNameValues. If ResetAllParameters is false, you must specify the name of at least one parameter to reset.

Request syntax

svc$reset_cache_parameter_group(
  CacheParameterGroupName = "string",
  ResetAllParameters = TRUE|FALSE,
  ParameterNameValues = list(
    list(
      ParameterName = "string",
      ParameterValue = "string"
    )
  )
)