deletePipelineEndpoint method

Future<void> deletePipelineEndpoint({
  1. required String endpointId,
})

Deletes a VPC endpoint for an OpenSearch Ingestion pipeline.

May throw AccessDeniedException. May throw DisabledOperationException. May throw InternalException. May throw ValidationException.

Parameter endpointId : The unique identifier of the pipeline endpoint to delete.

Implementation

Future<void> deletePipelineEndpoint({
  required String endpointId,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/2022-01-01/osis/deletePipelineEndpoint/${Uri.encodeComponent(endpointId)}',
    exceptionFnMap: _exceptionFns,
  );
}