import * as pulumi from "@pulumi/pulumi"; /** * Resource Type definition for AWS::ServiceCatalog::LaunchNotificationConstraint */ export declare function getLaunchNotificationConstraint(args: GetLaunchNotificationConstraintArgs, opts?: pulumi.InvokeOptions): Promise; 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; export interface GetLaunchNotificationConstraintOutputArgs { /** * Unique identifier for the constraint */ id: pulumi.Input; }