deletePrivateGraphEndpoint method
Deletes a private graph endpoint.
May throw ConflictException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter graphIdentifier :
The unique identifier of the Neptune Analytics graph.
Parameter vpcId :
The ID of the VPC where the private endpoint is located.
Implementation
Future<DeletePrivateGraphEndpointOutput> deletePrivateGraphEndpoint({
required String graphIdentifier,
required String vpcId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/graphs/${Uri.encodeComponent(graphIdentifier)}/endpoints/${Uri.encodeComponent(vpcId)}',
exceptionFnMap: _exceptionFns,
);
return DeletePrivateGraphEndpointOutput.fromJson(response);
}