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)

40 lines (39 loc) 1.33 kB
import * as pulumi from "@pulumi/pulumi"; /** * Resource Type definition for AWS::ServiceCatalog::LaunchRoleConstraint */ export declare function getLaunchRoleConstraint(args: GetLaunchRoleConstraintArgs, opts?: pulumi.InvokeOptions): Promise<GetLaunchRoleConstraintResult>; 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<GetLaunchRoleConstraintResult>; export interface GetLaunchRoleConstraintOutputArgs { /** * The unique identifier for the launch role constraint. */ id: pulumi.Input<string>; }