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)

28 lines (27 loc) 751 B
import * as pulumi from "@pulumi/pulumi"; /** * Resource Type definition for AWS::LookoutMetrics::Alert */ export declare function getAlert(args: GetAlertArgs, opts?: pulumi.InvokeOptions): Promise<GetAlertResult>; export interface GetAlertArgs { /** * ARN assigned to the alert. */ arn: string; } export interface GetAlertResult { /** * ARN assigned to the alert. */ readonly arn?: string; } /** * Resource Type definition for AWS::LookoutMetrics::Alert */ export declare function getAlertOutput(args: GetAlertOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAlertResult>; export interface GetAlertOutputArgs { /** * ARN assigned to the alert. */ arn: pulumi.Input<string>; }