Skip to content

Reset Cluster Parameter Group

redshift_reset_cluster_parameter_group R Documentation

Sets one or more parameters of the specified parameter group to their default values and sets the source values of the parameters to "engine-default"

Description

Sets one or more parameters of the specified parameter group to their default values and sets the source values of the parameters to "engine-default". To reset the entire parameter group specify the ResetAllParameters parameter. For parameter changes to take effect you must reboot any associated clusters.

Usage

redshift_reset_cluster_parameter_group(ParameterGroupName,
  ResetAllParameters, Parameters)

Arguments

ParameterGroupName

[required] The name of the cluster parameter group to be reset.

ResetAllParameters

If true, all parameters in the specified parameter group will be reset to their default values.

Default: true

Parameters

An array of names of parameters to be reset. If ResetAllParameters option is not used, then at least one parameter name must be supplied.

Constraints: A maximum of 20 parameters can be reset in a single request.

Value

A list with the following syntax:

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

Request syntax

svc$reset_cluster_parameter_group(
  ParameterGroupName = "string",
  ResetAllParameters = TRUE|FALSE,
  Parameters = list(
    list(
      ParameterName = "string",
      ParameterValue = "string",
      Description = "string",
      Source = "string",
      DataType = "string",
      AllowedValues = "string",
      ApplyType = "static"|"dynamic",
      IsModifiable = TRUE|FALSE,
      MinimumEngineVersion = "string"
    )
  )
)