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.
redshift_reset_cluster_parameter_group(ParameterGroupName,
ResetAllParameters, Parameters)
A list with the following syntax:
list(
ParameterGroupName = "string",
ParameterGroupStatus = "string"
)
[required] The name of the cluster parameter group to be reset.
If true
, all parameters in the specified parameter group will be reset
to their default values.
Default: true
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.
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"
)
)
)