deleteTelemetryPipeline method

Future<void> deleteTelemetryPipeline({
  1. required String pipelineIdentifier,
})

Deletes a telemetry pipeline and its associated resources. This operation stops data processing and removes the pipeline configuration.

May throw AccessDeniedException. May throw ConflictException. May throw InternalServerException. May throw ResourceNotFoundException. May throw TooManyRequestsException. May throw ValidationException.

Parameter pipelineIdentifier : The ARN of the telemetry pipeline to delete.

Implementation

Future<void> deleteTelemetryPipeline({
  required String pipelineIdentifier,
}) async {
  final $payload = <String, dynamic>{
    'PipelineIdentifier': pipelineIdentifier,
  };
  final response = await _protocol.send(
    payload: $payload,
    method: 'POST',
    requestUri: '/DeleteTelemetryPipeline',
    exceptionFnMap: _exceptionFns,
  );
}