deleteDBParameterGroup method
May throw InvalidDBParameterGroupStateFault. May throw DBParameterGroupNotFoundFault.
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-02-12',
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
shape: shapes['DeleteDBParameterGroupMessage'],
shapes: shapes,
);
}