deleteDBParameterGroup method

Future<void> deleteDBParameterGroup({
  1. required String dBParameterGroupName,
})

Implementation

Future<void> deleteDBParameterGroup({
  required String dBParameterGroupName,
}) async {
  ArgumentError.checkNotNull(dBParameterGroupName, 'dBParameterGroupName');
  final $request = <String, dynamic>{};
  $request['DBParameterGroupName'] = dBParameterGroupName;
  await _protocol.send(
    $request,
    action: 'DeleteDBParameterGroup',
    version: '2013-01-10',
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    shape: shapes['DeleteDBParameterGroupMessage'],
    shapes: shapes,
  );
}