AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.
Creates a new DB subnet group. DB subnet groups must contain at least one subnet in at least two AZs in the Amazon Region.
For .NET Core this operation is only available in asynchronous form. Please refer to CreateDBSubnetGroupAsync.
Namespace: Amazon.Neptune
Assembly: AWSSDK.Neptune.dll
Version: 3.x.y.z
public abstract CreateDBSubnetGroupResponse CreateDBSubnetGroup( CreateDBSubnetGroupRequest request )
Container for the necessary parameters to execute the CreateDBSubnetGroup service method.
Exception | Condition |
---|---|
DBSubnetGroupAlreadyExistsException | DBSubnetGroupName is already used by an existing DB subnet group. |
DBSubnetGroupDoesNotCoverEnoughAZsException | Subnets in the DB subnet group should cover at least two Availability Zones unless there is only one Availability Zone. |
DBSubnetGroupQuotaExceededException | Request would result in user exceeding the allowed number of DB subnet groups. |
DBSubnetQuotaExceededException | Request would result in user exceeding the allowed number of subnets in a DB subnet groups. |
InvalidSubnetException | The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC. |
This example creates a DB subnet group.
var response = client.CreateDBSubnetGroup(new CreateDBSubnetGroupRequest { DBSubnetGroupDescription = "My DB subnet group", DBSubnetGroupName = "mydbsubnetgroup", SubnetIds = new List<string> { "subnet-1fab8a69", "subnet-d43a468c" } }); DBSubnetGroup dbSubnetGroup = response.DBSubnetGroup;
.NET Framework:
Supported in: 4.5 and newer, 3.5