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)

36 lines (35 loc) 1.21 kB
import * as pulumi from "@pulumi/pulumi"; /** * Resource Type definition for AWS::ServiceCatalog::LaunchNotificationConstraint */ export declare function getLaunchNotificationConstraint(args: GetLaunchNotificationConstraintArgs, opts?: pulumi.InvokeOptions): Promise<GetLaunchNotificationConstraintResult>; export interface GetLaunchNotificationConstraintArgs { /** * Unique identifier for the constraint */ id: string; } export interface GetLaunchNotificationConstraintResult { /** * The description of the constraint. */ readonly description?: string; /** * Unique identifier for the constraint */ readonly id?: string; /** * The notification ARNs. */ readonly notificationArns?: string[]; } /** * Resource Type definition for AWS::ServiceCatalog::LaunchNotificationConstraint */ export declare function getLaunchNotificationConstraintOutput(args: GetLaunchNotificationConstraintOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLaunchNotificationConstraintResult>; export interface GetLaunchNotificationConstraintOutputArgs { /** * Unique identifier for the constraint */ id: pulumi.Input<string>; }