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 cache subnet group.

You cannot delete a default cache subnet group or one that is associated with any clusters.

Note:

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

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

Syntax

C#
public abstract DeleteCacheSubnetGroupResponse DeleteCacheSubnetGroup(
         DeleteCacheSubnetGroupRequest request
)

Parameters

request
Type: Amazon.ElastiCache.Model.DeleteCacheSubnetGroupRequest

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

Return Value


The response from the DeleteCacheSubnetGroup service method, as returned by ElastiCache.

Exceptions

ExceptionCondition
CacheSubnetGroupInUseException The requested cache subnet group is currently in use.
CacheSubnetGroupNotFoundException The requested cache subnet group name does not refer to an existing cache subnet group.

Examples

Deletes the Amazon ElastiCache subnet group my-subnet-group.

DeleteCacheSubnetGroup


var client = new AmazonElastiCacheClient();
var response = client.DeleteCacheSubnetGroup(new DeleteCacheSubnetGroupRequest 
{
    CacheSubnetGroupName = "my-subnet-group"
});


            

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

See Also