import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource Type definition for AWS::ObservabilityAdmin::TelemetryPipelines */ export declare function getTelemetryPipelines(args: GetTelemetryPipelinesArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetTelemetryPipelinesArgs { /** * The Amazon Resource Name (ARN) of the telemetry pipeline. */ pipelineIdentifier: string; } export interface GetTelemetryPipelinesResult { /** * The Amazon Resource Name (ARN) of the created telemetry pipeline. */ readonly arn?: string; /** * The configuration that defines how the telemetry pipeline processes data, including sources, processors, and destinations. For more information, see the [Amazon CloudWatch User Guide](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Creating-pipelines.html) . */ readonly configuration?: outputs.observabilityadmin.TelemetryPipelinesTelemetryPipelineConfiguration; readonly pipeline?: outputs.observabilityadmin.TelemetryPipelinesTelemetryPipeline; /** * The Amazon Resource Name (ARN) of the telemetry pipeline. */ readonly pipelineIdentifier?: string; /** * The current status of the telemetry pipeline. */ readonly status?: enums.observabilityadmin.TelemetryPipelinesTelemetryPipelineStatus; readonly statusReason?: outputs.observabilityadmin.TelemetryPipelinesTelemetryPipelineStatusReason; /** * An array of key-value pairs to apply to this resource */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::ObservabilityAdmin::TelemetryPipelines */ export declare function getTelemetryPipelinesOutput(args: GetTelemetryPipelinesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetTelemetryPipelinesOutputArgs { /** * The Amazon Resource Name (ARN) of the telemetry pipeline. */ pipelineIdentifier: pulumi.Input; }