import * as pulumi from "@pulumi/pulumi"; /** * Resource Type definition for AWS::ServiceCatalog::LaunchTemplateConstraint */ export declare function getLaunchTemplateConstraint(args: GetLaunchTemplateConstraintArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetLaunchTemplateConstraintArgs { /** * Unique identifier for the constraint */ id: string; } export interface GetLaunchTemplateConstraintResult { /** * The description of the constraint. */ readonly description?: string; /** * Unique identifier for the constraint */ readonly id?: string; /** * A json encoded string of the template constraint rules */ readonly rules?: string; } /** * Resource Type definition for AWS::ServiceCatalog::LaunchTemplateConstraint */ export declare function getLaunchTemplateConstraintOutput(args: GetLaunchTemplateConstraintOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetLaunchTemplateConstraintOutputArgs { /** * Unique identifier for the constraint */ id: pulumi.Input; }