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

Class: Aws::ElastiCache::Types::ResetCacheParameterGroupMessage

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

Overview

Note:

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

{
  cache_parameter_group_name: "String", # required
  reset_all_parameters: false,
  parameter_name_values: [
    {
      parameter_name: "String",
      parameter_value: "String",
    },
  ],
}

Represents the input of a ResetCacheParameterGroup operation.

Instance Attribute Summary collapse

Instance Attribute Details

#cache_parameter_group_nameString

The name of the cache parameter group to reset.

Returns:

  • (String)

    The name of the cache parameter group to reset.

#parameter_name_valuesArray<Types::ParameterNameValue>

An array of parameter names to reset to their default values. If ResetAllParameters is true, do not use ParameterNameValues. If ResetAllParameters is false, you must specify the name of at least one parameter to reset.

Returns:

#reset_all_parametersBoolean

If true, all parameters in the cache parameter group are reset to their default values. If false, only the parameters listed by ParameterNameValues are reset to their default values.

Valid values: true | false

Returns:

  • (Boolean)

    If true, all parameters in the cache parameter group are reset to their default values.