deleteDBProxy method
Deletes an existing DB proxy.
May throw DBProxyNotFoundFault.
May throw InvalidDBProxyStateFault.
Parameter dBProxyName :
The name of the DB proxy to delete.
Implementation
Future<DeleteDBProxyResponse> deleteDBProxy({
required String dBProxyName,
}) async {
final $request = <String, String>{
'DBProxyName': dBProxyName,
};
final $result = await _protocol.send(
$request,
action: 'DeleteDBProxy',
version: '2014-10-31',
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
resultWrapper: 'DeleteDBProxyResult',
);
return DeleteDBProxyResponse.fromXml($result);
}