deleteDBSubnetGroup method
May throw InvalidDBSubnetGroupStateFault. May throw InvalidDBSubnetStateFault. May throw DBSubnetGroupNotFoundFault.
Implementation
Future<void> deleteDBSubnetGroup({
required String dBSubnetGroupName,
}) async {
ArgumentError.checkNotNull(dBSubnetGroupName, 'dBSubnetGroupName');
final $request = <String, dynamic>{};
$request['DBSubnetGroupName'] = dBSubnetGroupName;
await _protocol.send(
$request,
action: 'DeleteDBSubnetGroup',
version: '2013-02-12',
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
shape: shapes['DeleteDBSubnetGroupMessage'],
shapes: shapes,
);
}