Container for the parameters to the ResetDBParameterGroup operation.

Modifies the parameters of a DBParameterGroup to the engine/system default value. To reset specific parameters submit a list of the following: ParameterName and ApplyMethod. To reset the entire DBParameterGroup specify the DBParameterGroup name 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.

Namespace: Amazon.RDS.Model
Assembly: AWSSDK (in AWSSDK.dll) Version: 1.4.10.0 (1.4.10.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public class ResetDBParameterGroupRequest : AmazonWebServiceRequest
Public Class ResetDBParameterGroupRequest _
	Inherits AmazonWebServiceRequest
public ref class ResetDBParameterGroupRequest : public AmazonWebServiceRequest

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
ResetDBParameterGroupRequest()()()()
Initializes a new instance of the ResetDBParameterGroupRequest class
DBParameterGroupName
The name of the DB Parameter Group. Constraints:
  • Must be 1 to 255 alphanumeric characters
  • First character must be a letter
  • Cannot end with a hyphen or contain two consecutive hyphens
Equals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
GetHashCode()()()()
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType()()()()
Gets the Type of the current instance.
(Inherited from Object.)
Parameters
An array of parameter names, values, and the apply method for the parameter update. At least one parameter name, value, and apply method must be supplied; subsequent arguments are optional. A maximum of 20 parameters may be modified in a single request. MySQL Valid Values (for Apply method): immediate | pending-reboot You can use the immediate value with dynamic parameters only. You can use the pending-reboot value for both dynamic and static parameters, and changes are applied when DB Instance reboots. Oracle Valid Values (for Apply method): pending-reboot
ResetAllParameters
Specifies whether (true) or not (false) to reset all parameters in the DB Parameter Group to default values. Default: true
ToString()()()()
Returns a String that represents the current Object.
(Inherited from Object.)
WithDBParameterGroupName(String)
Sets the DBParameterGroupName property
WithParameters(array<Parameter>[]()[][])
Adds elements to the Parameters collection
WithParameters(IEnumerable<(Of <<'(Parameter>)>>))
Adds elements to the Parameters collection
WithResetAllParameters(Boolean)
Sets the ResetAllParameters property

Inheritance Hierarchy

System..::..Object
  Amazon.Runtime..::..AmazonWebServiceRequest
    Amazon.RDS.Model..::..ResetDBParameterGroupRequest

See Also