import * as pulumi from "@pulumi/pulumi"; /** * Resource Type definition for AWS::ServiceCatalog::LaunchRoleConstraint */ export declare function getLaunchRoleConstraint(args: GetLaunchRoleConstraintArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetLaunchRoleConstraintArgs { /** * The unique identifier for the launch role constraint. */ id: string; } export interface GetLaunchRoleConstraintResult { /** * The description of the launch role constraint. */ readonly description?: string; /** * The unique identifier for the launch role constraint. */ readonly id?: string; /** * The local IAM role name to use in the launch constraint. */ readonly localRoleName?: string; /** * The ARN of the IAM role used for the launch constraint. */ readonly roleArn?: string; } /** * Resource Type definition for AWS::ServiceCatalog::LaunchRoleConstraint */ export declare function getLaunchRoleConstraintOutput(args: GetLaunchRoleConstraintOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetLaunchRoleConstraintOutputArgs { /** * The unique identifier for the launch role constraint. */ id: pulumi.Input; }