AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the ResetDBClusterParameterGroup operation. Modifies the parameters of a DB cluster parameter group to the default value. To reset specific parameters submit a list of the following: ParameterName and ApplyMethod. To reset the entire DB cluster parameter group, specify the DBClusterParameterGroupName and ResetAllParameters parameters.

When resetting the entire group, dynamic parameters are updated immediately and static parameters are set to pending-reboot to take effect on the next DB instance restart or RebootDBInstance request. You must call RebootDBInstance for every DB instance in your DB cluster that you want the updated static parameter to apply to.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.Neptune.AmazonNeptuneRequest
      Amazon.Neptune.Model.ResetDBClusterParameterGroupRequest

Namespace: Amazon.Neptune.Model
Assembly: AWSSDK.Neptune.dll
Version: 3.x.y.z

Syntax

C#
public class ResetDBClusterParameterGroupRequest : AmazonNeptuneRequest
         IAmazonWebServiceRequest

The ResetDBClusterParameterGroupRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property DBClusterParameterGroupName System.String

Gets and sets the property DBClusterParameterGroupName.

The name of the DB cluster parameter group to reset.

Public Property Parameters System.Collections.Generic.List<Amazon.Neptune.Model.Parameter>

Gets and sets the property Parameters.

A list of parameter names in the DB cluster parameter group to reset to the default values. You can't use this parameter if the ResetAllParameters parameter is set to true.

Public Property ResetAllParameters System.Boolean

Gets and sets the property ResetAllParameters.

A value that is set to true to reset all parameters in the DB 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.

Examples

This example resets all parameters for the specified DB cluster parameter group to their default values.

To reset the values of a DB cluster parameter group


var response = client.ResetDBClusterParameterGroup(new ResetDBClusterParameterGroupRequest 
{
    DBClusterParameterGroupName = "mydbclusterparametergroup",
    ResetAllParameters = true
});


            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5