| « PreviousNext » | |
![]() ![]() ![]() | Did this page help you? Yes | No | Tell us about it... |
The AWS::RDS::DBSubnetGroup type creates an RDS database subnet group. Subnet groups must contain at least one subnet in two availability zones in the region.
{
"Type" : "AWS::RDS::DBSubnetGroup",
"Properties" : {
"DBSubnetGroupDescription" : String,
"SubnetIds" : [ String, ... ]
}
} The description for the DB Subnet Group.
Required: Yes.
Type: String.
Update requires: no interruption
The EC2 Subnet IDs for the DB Subnet Group.
Required: Yes.
Type: A list of strings.
Update requires: no interruption
{
"AWSTemplateFormatVersion" : "2010-09-09",
"Resources" : {
"myDBSubnetGroup" : {
"Type" : "AWS::RDS::DBSubnetGroup",
"Properties" : {
"DBSubnetGroupDescription" : "description",
"SubnetIds" : [ "subnet-7b5b4112", "subnet-7b5b4115" ]
}
}
}
} CreateDBSubnetGroup in the Amazon Relational Database Service API Reference
ModifyDBSubnetGroup in the Amazon Relational Database Service API Reference