UNPKG

@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)

20 lines (19 loc) 1.4 kB
import * as pulumi from "@pulumi/pulumi"; import * as enums from "../types/enums"; /** * AWS::ObservabilityAdmin::TelemetryEnrichment cloudformation resource enables the resource tags for telemetry feature in CloudWatch to enrich infrastructure metrics with AWS resource tags. For more details: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/resource-tags-for-telemetry.html */ export declare function getTelemetryEnrichment(args: GetTelemetryEnrichmentArgs, opts?: pulumi.InvokeOptions): Promise<GetTelemetryEnrichmentResult>; export interface GetTelemetryEnrichmentArgs { scope: enums.observabilityadmin.TelemetryEnrichmentScope; } export interface GetTelemetryEnrichmentResult { readonly status?: enums.observabilityadmin.TelemetryEnrichmentStatus; } /** * AWS::ObservabilityAdmin::TelemetryEnrichment cloudformation resource enables the resource tags for telemetry feature in CloudWatch to enrich infrastructure metrics with AWS resource tags. For more details: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/resource-tags-for-telemetry.html */ export declare function getTelemetryEnrichmentOutput(args: GetTelemetryEnrichmentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTelemetryEnrichmentResult>; export interface GetTelemetryEnrichmentOutputArgs { scope: pulumi.Input<enums.observabilityadmin.TelemetryEnrichmentScope>; }