Skip to content

Reset Parameter Group

memorydb_reset_parameter_group R Documentation

Modifies the parameters of a parameter group to the engine or system default value

Description

Modifies the parameters of a 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 parameter group, specify the AllParameters and ParameterGroupName parameters.

Usage

memorydb_reset_parameter_group(ParameterGroupName, AllParameters,
  ParameterNames)

Arguments

ParameterGroupName

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

AllParameters

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

ParameterNames

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

Value

A list with the following syntax:

list(
  ParameterGroup = list(
    Name = "string",
    Family = "string",
    Description = "string",
    ARN = "string"
  )
)

Request syntax

svc$reset_parameter_group(
  ParameterGroupName = "string",
  AllParameters = TRUE|FALSE,
  ParameterNames = list(
    "string"
  )
)