C# Class Amazon.ElastiCache.Model.ResetCacheParameterGroupRequest

Container for the parameters to the ResetCacheParameterGroup operation.

The ResetCacheParameterGroup operation modifies the parameters of a cache parameter group to the engine or system default value. You can reset specific parameters by submitting a list of parameter names. To reset the entire cache parameter group, specify the ResetAllParameters and CacheParameterGroupName parameters.

Inheritance: AmazonElastiCacheRequest
Mostrar archivo Open project: aws/aws-sdk-net Class Usage Examples

Public Methods

Method Description
ResetCacheParameterGroupRequest ( ) : System

Empty constructor used to set properties independently even when a simple constructor is available

ResetCacheParameterGroupRequest ( string cacheParameterGroupName, List parameterNameValues ) : System

Instantiates ResetCacheParameterGroupRequest with the parameterized properties

Private Methods

Method Description
IsSetCacheParameterGroupName ( ) : bool
IsSetParameterNameValues ( ) : bool
IsSetResetAllParameters ( ) : bool

Method Details

ResetCacheParameterGroupRequest() public method

Empty constructor used to set properties independently even when a simple constructor is available
public ResetCacheParameterGroupRequest ( ) : System
return System

ResetCacheParameterGroupRequest() public method

Instantiates ResetCacheParameterGroupRequest with the parameterized properties
public ResetCacheParameterGroupRequest ( string cacheParameterGroupName, List parameterNameValues ) : System
cacheParameterGroupName string The name of the cache parameter group to reset.
parameterNameValues List 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.
return System