deleteClusterSubnetGroup method

Future<void> deleteClusterSubnetGroup({
  1. required String clusterSubnetGroupName,
})

Deletes the specified cluster subnet group.

May throw ClusterSubnetGroupNotFoundFault. May throw InvalidClusterSubnetGroupStateFault. May throw InvalidClusterSubnetStateFault.

Parameter clusterSubnetGroupName : The name of the cluster subnet group name to be deleted.

Implementation

Future<void> deleteClusterSubnetGroup({
  required String clusterSubnetGroupName,
}) async {
  final $request = <String, String>{
    'ClusterSubnetGroupName': clusterSubnetGroupName,
  };
  await _protocol.send(
    $request,
    action: 'DeleteClusterSubnetGroup',
    version: '2012-12-01',
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
  );
}