# AWS::RDS::DBParameterGroup The AWS::RDS::DBParameterGroup resource creates a custom parameter group for an RDS database family ## Syntax To declare this entity in your AWS CloudFormation template, use the following syntax: ### JSON
{
"Type" : "AWS::RDS::DBParameterGroup",
"Properties" : {
"DBParameterGroupName" : String,
"Description" : String,
"Family" : String,
"Parameters" : Map,
"Tags" : [ Tag, ... ]
}
}
### YAML
Type: AWS::RDS::DBParameterGroup
Properties:
DBParameterGroupName: String
Description: String
Family: String
Parameters: Map
Tags:
- Tag
## Properties
#### DBParameterGroupName
Specifies the name of the DB parameter group
_Required_: No
_Type_: String
_Pattern_: ^[a-zA-Z]{1}(?:-?[a-zA-Z0-9])*$
_Update requires_: [Replacement](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement)
#### Description
Provides the customer-specified description for this DB parameter group.
_Required_: Yes
_Type_: String
_Update requires_: [Replacement](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement)
#### Family
The DB parameter group family name.
_Required_: Yes
_Type_: String
_Update requires_: [Replacement](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement)
#### Parameters
An array of parameter names and values for the parameter update.
_Required_: No
_Type_: Map
_Update requires_: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)
#### Tags
An array of key-value pairs to apply to this resource.
_Required_: No
_Type_: List of Tag
_Update requires_: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)
## Return Values
### Ref
When you pass the logical ID of this resource to the intrinsic `Ref` function, Ref returns the DBParameterGroupName.