Creates a new subnet group. subnet groups must contain at least one subnet in at least two Availability Zones in the AWS Region.
docdb_create_db_subnet_group(DBSubnetGroupName,
DBSubnetGroupDescription, SubnetIds, Tags)
A list with the following syntax:
list(
DBSubnetGroup = list(
DBSubnetGroupName = "string",
DBSubnetGroupDescription = "string",
VpcId = "string",
SubnetGroupStatus = "string",
Subnets = list(
list(
SubnetIdentifier = "string",
SubnetAvailabilityZone = list(
Name = "string"
),
SubnetStatus = "string"
)
),
DBSubnetGroupArn = "string"
)
)
[required] The name for the subnet group. This value is stored as a lowercase string.
Constraints: Must contain no more than 255 letters, numbers, periods, underscores, spaces, or hyphens. Must not be default.
Example: mySubnetgroup
[required] The description for the subnet group.
[required] The Amazon EC2 subnet IDs for the subnet group.
The tags to be assigned to the subnet group.
svc$create_db_subnet_group(
DBSubnetGroupName = "string",
DBSubnetGroupDescription = "string",
SubnetIds = list(
"string"
),
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)