You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Redshift::Types::ResetClusterParameterGroupMessage

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ResetClusterParameterGroupMessage as input to an Aws::Client method, you can use a vanilla Hash:

{
  parameter_group_name: "String", # required
  reset_all_parameters: false,
  parameters: [
    {
      parameter_name: "String",
      parameter_value: "String",
      description: "String",
      source: "String",
      data_type: "String",
      allowed_values: "String",
      apply_type: "static", # accepts static, dynamic
      is_modifiable: false,
      minimum_engine_version: "String",
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#parameter_group_nameString

The name of the cluster parameter group to be reset.

Returns:

  • (String)

    The name of the cluster parameter group to be reset.

#parametersArray<Types::Parameter>

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.

Returns:

#reset_all_parametersBoolean

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

Default: true

Returns:

  • (Boolean)

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