getTelemetryPipeline method
Retrieves information about a specific telemetry pipeline, including its configuration, status, and metadata.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw TooManyRequestsException.
May throw ValidationException.
Parameter pipelineIdentifier :
The identifier (name or ARN) of the telemetry pipeline to retrieve.
Implementation
Future<GetTelemetryPipelineOutput> getTelemetryPipeline({
required String pipelineIdentifier,
}) async {
final $payload = <String, dynamic>{
'PipelineIdentifier': pipelineIdentifier,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/GetTelemetryPipeline',
exceptionFnMap: _exceptionFns,
);
return GetTelemetryPipelineOutput.fromJson(response);
}