@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
48 lines (47 loc) • 2.11 kB
TypeScript
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<GetTelemetryPipelinesResult>;
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<GetTelemetryPipelinesResult>;
export interface GetTelemetryPipelinesOutputArgs {
/**
* The Amazon Resource Name (ARN) of the telemetry pipeline.
*/
pipelineIdentifier: pulumi.Input<string>;
}