Learn R Programming

paws.database (version 0.1.12)

redshift_modify_cluster_parameter_group: Modifies the parameters of a parameter group

Description

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.

Usage

redshift_modify_cluster_parameter_group(ParameterGroupName, Parameters)

Value

A list with the following syntax:

list(
  ParameterGroupName = "string",
  ParameterGroupStatus = "string"
)

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.

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"
    )
  )
)