import * as pulumi from "@pulumi/pulumi";
/**
 * Resource type definition for AWS::ServiceCatalog::ResourceUpdateConstraint
 */
export declare function getResourceUpdateConstraint(args: GetResourceUpdateConstraintArgs, opts?: pulumi.InvokeOptions): Promise<GetResourceUpdateConstraintResult>;
export interface GetResourceUpdateConstraintArgs {
    /**
     * Unique identifier for the constraint
     */
    id: string;
}
export interface GetResourceUpdateConstraintResult {
    /**
     * The description of the constraint
     */
    readonly description?: string;
    /**
     * Unique identifier for the constraint
     */
    readonly id?: string;
    /**
     * ALLOWED or NOT_ALLOWED, to permit or prevent changes to the tags on provisioned instances of the specified portfolio / product combination
     */
    readonly tagUpdateOnProvisionedProduct?: string;
}
/**
 * Resource type definition for AWS::ServiceCatalog::ResourceUpdateConstraint
 */
export declare function getResourceUpdateConstraintOutput(args: GetResourceUpdateConstraintOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetResourceUpdateConstraintResult>;
export interface GetResourceUpdateConstraintOutputArgs {
    /**
     * Unique identifier for the constraint
     */
    id: pulumi.Input<string>;
}
