AWS SDK Version 3 for .NET
API Reference

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.

Deletes a DB subnet group.

The specified database subnet group must not be associated with any DB instances.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to DeleteDBSubnetGroupAsync.

Namespace: Amazon.Neptune
Assembly: AWSSDK.Neptune.dll
Version: 3.x.y.z

Syntax

C#
public abstract DeleteDBSubnetGroupResponse DeleteDBSubnetGroup(
         DeleteDBSubnetGroupRequest request
)

Parameters

request
Type: Amazon.Neptune.Model.DeleteDBSubnetGroupRequest

Container for the necessary parameters to execute the DeleteDBSubnetGroup service method.

Return Value


The response from the DeleteDBSubnetGroup service method, as returned by Neptune.

Exceptions

ExceptionCondition
DBSubnetGroupNotFoundException DBSubnetGroupName does not refer to an existing DB subnet group.
InvalidDBSubnetGroupStateException The DB subnet group cannot be deleted because it is in use.
InvalidDBSubnetStateException The DB subnet is not in the available state.

Examples

This example deletes the specified DB subnetgroup.

To delete a DB subnet group.


var response = client.DeleteDBSubnetGroup(new DeleteDBSubnetGroupRequest 
{
    DBSubnetGroupName = "mydbsubnetgroup"
});


            

Version Information

.NET Framework:
Supported in: 4.5 and newer, 3.5

See Also