deleteDBParameterGroup method
Deletes a specified DBParameterGroup. The DBParameterGroup to be deleted can't be associated with any DB instances.
May throw DBParameterGroupNotFoundFault.
May throw InvalidDBParameterGroupStateFault.
Parameter dBParameterGroupName :
The name of the DB parameter group.
Constraints:
- Must be the name of an existing DB parameter group
- You can't delete a default DB parameter group
- Cannot be associated with any DB instances
Implementation
Future<void> deleteDBParameterGroup({
required String dBParameterGroupName,
}) async {
final $request = <String, String>{
'DBParameterGroupName': dBParameterGroupName,
};
await _protocol.send(
$request,
action: 'DeleteDBParameterGroup',
version: '2014-10-31',
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
);
}