@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.19 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Resource Type definition for AWS::ServiceCatalog::LaunchTemplateConstraint
*/
export declare function getLaunchTemplateConstraint(args: GetLaunchTemplateConstraintArgs, opts?: pulumi.InvokeOptions): Promise<GetLaunchTemplateConstraintResult>;
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<GetLaunchTemplateConstraintResult>;
export interface GetLaunchTemplateConstraintOutputArgs {
/**
* Unique identifier for the constraint
*/
id: pulumi.Input<string>;
}