Container for the parameters to the ModifyDBParameterGroup operation.

Modifies the parameters of a DBParameterGroup. To modify more than one parameter submit a list of the following: ParameterName, ParameterValue, and ApplyMethod. A maximum of 20 parameters can be modified in a single request.

NOTE: The apply-immediate method can only be used for dynamic parameters; the pending-reboot method can be used for either dynamic or static parameters.

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 ModifyDBParameterGroupRequest : AmazonWebServiceRequest
Public Class ModifyDBParameterGroupRequest _
	Inherits AmazonWebServiceRequest
public ref class ModifyDBParameterGroupRequest : public AmazonWebServiceRequest

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
ModifyDBParameterGroupRequest()()()()
Initializes a new instance of the ModifyDBParameterGroupRequest class
DBParameterGroupName
The name of the DB Parameter Group. Constraints:
  • Must be the name of an existing DB Parameter Group
  • 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. Valid Values (for the application method): immediate | pending-reboot
Note:
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.
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

Inheritance Hierarchy

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

See Also