deleteDBClusterParameterGroup method
Deletes a specified DB cluster parameter group. The DB cluster parameter group to be deleted can't be associated with any DB clusters.
For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.
For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.
May throw DBParameterGroupNotFoundFault.
May throw InvalidDBParameterGroupStateFault.
Parameter dBClusterParameterGroupName :
The name of the DB cluster parameter group.
Constraints:
- Must be the name of an existing DB cluster parameter group.
- You can't delete a default DB cluster parameter group.
- Can't be associated with any DB clusters.
Implementation
Future<void> deleteDBClusterParameterGroup({
required String dBClusterParameterGroupName,
}) async {
final $request = <String, String>{
'DBClusterParameterGroupName': dBClusterParameterGroupName,
};
await _protocol.send(
$request,
action: 'DeleteDBClusterParameterGroup',
version: '2014-10-31',
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
);
}