Update Parameter Group
dax_update_parameter_group | R Documentation |
Modifies the parameters of a parameter group¶
Description¶
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.
Usage¶
dax_update_parameter_group(ParameterGroupName, ParameterNameValues)
Arguments¶
ParameterGroupName |
[required] The name of the parameter group. |
ParameterNameValues |
[required] An array of name-value pairs for the parameters in the group. Each element in the array represents a single parameter.
|
Value¶
A list with the following syntax:
list(
ParameterGroup = list(
ParameterGroupName = "string",
Description = "string"
)
)
Request syntax¶
svc$update_parameter_group(
ParameterGroupName = "string",
ParameterNameValues = list(
list(
ParameterName = "string",
ParameterValue = "string"
)
)
)