deleteDBSubnetGroup method

Future<void> deleteDBSubnetGroup({
  1. required String dBSubnetGroupName,
})

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-01-10',
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    shape: shapes['DeleteDBSubnetGroupMessage'],
    shapes: shapes,
  );
}