import { Ref } from './ref'; import { Construct } from './construct'; export interface PrivateLocationCheckAssignmentProps { privateLocationId: Ref; checkId?: Ref; } /** * Creates an Private Location Assignment * * @remarks * * This class make use of the Private Location Assignment endpoints. */ export declare class PrivateLocationCheckAssignment extends Construct { privateLocationId: Ref; checkId?: Ref; static readonly __checklyType = "private-location-check-assignment"; /** * Constructs the Private Location Assignment instance * * @param logicalId unique project-scoped resource name identification * @param props private location assignment configuration properties */ constructor(logicalId: string, props: PrivateLocationCheckAssignmentProps); describe(): string; synthesize(): { privateLocationId: Ref; checkId: Ref | undefined; }; }