deleteDBClusterEndpoint method
Future<DeleteDBClusterEndpointOutput>
deleteDBClusterEndpoint({
- required String dBClusterEndpointIdentifier,
Deletes a custom endpoint and removes it from an Amazon Neptune DB cluster.
May throw DBClusterEndpointNotFoundFault.
May throw InvalidDBClusterEndpointStateFault.
May throw InvalidDBClusterStateFault.
Parameter dBClusterEndpointIdentifier :
The identifier associated with the custom endpoint. This parameter is
stored as a lowercase string.
Implementation
Future<DeleteDBClusterEndpointOutput> deleteDBClusterEndpoint({
required String dBClusterEndpointIdentifier,
}) async {
final $request = <String, String>{
'DBClusterEndpointIdentifier': dBClusterEndpointIdentifier,
};
final $result = await _protocol.send(
$request,
action: 'DeleteDBClusterEndpoint',
version: '2014-10-31',
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
resultWrapper: 'DeleteDBClusterEndpointResult',
);
return DeleteDBClusterEndpointOutput.fromXml($result);
}