C# Class Amazon.RDS.Model.CreateDBParameterGroupRequest

Container for the parameters to the CreateDBParameterGroup operation.

Creates a new DB parameter group.

A DB parameter group is initially created with the default parameters for the database engine used by the DB instance. To provide custom values for any of the parameters, you must modify the group after creating it using ModifyDBParameterGroup . Once you've created a DB parameter group, you need to associate it with your DB instance using ModifyDBInstance . When you associate a new DB parameter group with a running DB instance, you need to reboot the DB Instance for the new DB parameter group and associated settings to take effect.

Inheritance: AmazonRDSRequest
Exibir arquivo Open project: aws/aws-sdk-net Class Usage Examples

Public Methods

Method Description
CreateDBParameterGroupRequest ( ) : System

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

CreateDBParameterGroupRequest ( string dbParameterGroupName, string dbParameterGroupFamily, string description ) : System

Instantiates CreateDBParameterGroupRequest with the parameterized properties

Private Methods

Method Description
IsSetDBParameterGroupFamily ( ) : bool
IsSetDBParameterGroupName ( ) : bool
IsSetDescription ( ) : bool
IsSetTags ( ) : bool

Method Details

CreateDBParameterGroupRequest() public method

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

CreateDBParameterGroupRequest() public method

Instantiates CreateDBParameterGroupRequest with the parameterized properties
public CreateDBParameterGroupRequest ( string dbParameterGroupName, string dbParameterGroupFamily, string description ) : System
dbParameterGroupName string 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
This value is stored as a lowercase string.
dbParameterGroupFamily string The DB parameter group family name. A DB parameter group can be associated with one and only one DB parameter group family, and can be applied only to a DB instance running a database engine and engine version compatible with that DB parameter group family.
description string The description for the DB parameter group.
return System