Modify Cluster Parameter Group
redshift_modify_cluster_parameter_group | R Documentation |
Modifies the parameters of a parameter group¶
Description¶
Modifies the parameters of a parameter group. For the parameters parameter, it can't contain ASCII characters.
For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.
Usage¶
Arguments¶
ParameterGroupName
[required] The name of the parameter group to be modified.
Parameters
[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.
Value¶
A list with the following syntax:
Request syntax¶
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"
)
)
)