class Aws::DocDB::Types::ResetDBClusterParameterGroupMessage

Represents the input to ResetDBClusterParameterGroup.

@note When making an API call, you may pass ResetDBClusterParameterGroupMessage

data as a hash:

    {
      db_cluster_parameter_group_name: "String", # required
      reset_all_parameters: false,
      parameters: [
        {
          parameter_name: "String",
          parameter_value: "String",
          description: "String",
          source: "String",
          apply_type: "String",
          data_type: "String",
          allowed_values: "String",
          is_modifiable: false,
          minimum_engine_version: "String",
          apply_method: "immediate", # accepts immediate, pending-reboot
        },
      ],
    }

@!attribute [rw] db_cluster_parameter_group_name

The name of the cluster parameter group to reset.
@return [String]

@!attribute [rw] reset_all_parameters

A value that is set to `true` to reset all parameters in the cluster
parameter group to their default values, and `false` otherwise. You
can't use this parameter if there is a list of parameter names
specified for the `Parameters` parameter.
@return [Boolean]

@!attribute [rw] parameters

A list of parameter names in the cluster parameter group to reset to
the default values. You can't use this parameter if the
`ResetAllParameters` parameter is set to `true`.
@return [Array<Types::Parameter>]

@see docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/ResetDBClusterParameterGroupMessage AWS API Documentation

Constants

SENSITIVE