Reset Db Cluster Parameter Group
| docdb_reset_db_cluster_parameter_group | R Documentation |
Modifies the parameters of a cluster parameter group to the default value¶
Description¶
Modifies the parameters of a cluster parameter group to the default
value. To reset specific parameters, submit a list of the following:
ParameterName and ApplyMethod. To reset the entire cluster parameter
group, specify the DBClusterParameterGroupName and
ResetAllParameters parameters.
When you reset the entire group, dynamic parameters are updated
immediately and static parameters are set to pending-reboot to take
effect on the next DB instance reboot.
Usage¶
Arguments¶
DBClusterParameterGroupName[required] The name of the cluster parameter group to reset.
ResetAllParametersA value that is set to
trueto reset all parameters in the cluster parameter group to their default values, andfalseotherwise. You can't use this parameter if there is a list of parameter names specified for theParametersparameter.ParametersA list of parameter names in the cluster parameter group to reset to the default values. You can't use this parameter if the
ResetAllParametersparameter is set totrue.
Value¶
A list with the following syntax:
Request syntax¶
svc$reset_db_cluster_parameter_group(
DBClusterParameterGroupName = "string",
ResetAllParameters = TRUE|FALSE,
Parameters = list(
list(
ParameterName = "string",
ParameterValue = "string",
Description = "string",
Source = "string",
ApplyType = "string",
DataType = "string",
AllowedValues = "string",
IsModifiable = TRUE|FALSE,
MinimumEngineVersion = "string",
ApplyMethod = "immediate"|"pending-reboot"
)
)
)