Modifies the parameters of a parameter group.
For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.
redshift_modify_cluster_parameter_group(ParameterGroupName, Parameters)
A list with the following syntax:
list(
ParameterGroupName = "string",
ParameterGroupStatus = "string"
)
[required] The name of the parameter group to be modified.
[required] An array of parameters to be modified. A maximum of 20 parameters can be modified in a single request.
For each parameter to be modified, you must supply at least the parameter name and parameter value; other name-value pairs of the parameter are optional.
For the workload management (WLM) configuration, you must supply all the name-value pairs in the wlm_json_configuration parameter.
svc$modify_cluster_parameter_group(
ParameterGroupName = "string",
Parameters = list(
list(
ParameterName = "string",
ParameterValue = "string",
Description = "string",
Source = "string",
DataType = "string",
AllowedValues = "string",
ApplyType = "static"|"dynamic",
IsModifiable = TRUE|FALSE,
MinimumEngineVersion = "string"
)
)
)