| Did this page help you? Yes No Tell us about it... |
Creates a 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 rds-modify-db-parameter-group. Once you've created a DB Parameter Group, you need to associate it with your DB Instance using rds-modify-db-instance. 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.
rds-create-db-parameter-group
DBParameterGroupName -d (--description)
value -f (--db-parameter-group-family)
value
[General Options]
| Name | Description | Required |
|---|---|---|
|
|
The name for the DB Parameter Group. Type: String Default: None Constraints: Is non-preserving and case-insensitive. Must contain visible characters only. Must be 1 to 63 alphanumeric characters or hyphens. Must not be "Default". Example: |
Yes |
|
|
The description for the DB Parameter Group. Type: String Default: None Constraints: Must not exceed 255 characters. Example: |
Yes |
|
|
The DB parameter group family. 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 compatible with that DB paramter group family. Type: String Default: None Example: |
Yes |
The command returns the following information:
Group NameThe user-supplied DB Parameter Group name
Parameter Group FamilyParameter group family to which this group applies.
DescriptionThe description of the DB Parameter Group
This example creates a new DB Parameter Group.
PROMPT>rds-create-db-parameter-group mydbparametergroup -f mysql5.1 -d "My first DB Parameter Group"DBPARAMETERGROUP Group Name Parameter Group Family Description DBPARAMETERGROUP mydbparametergroup mysql5.1 My first DB Parameter Group