Modifies the parameters of a parameter group. You can modify up to 20 parameters in a single request by submitting a list parameter name and value pairs.
dax_update_parameter_group(ParameterGroupName, ParameterNameValues)
A list with the following syntax:
list(
ParameterGroup = list(
ParameterGroupName = "string",
Description = "string"
)
)
[required] The name of the parameter group.
[required] An array of name-value pairs for the parameters in the group. Each element in the array represents a single parameter.
svc$update_parameter_group(
ParameterGroupName = "string",
ParameterNameValues = list(
list(
ParameterName = "string",
ParameterValue = "string"
)
)
)