@aws-cdk/core
Version:
AWS Cloud Development Kit Core Library
16 lines (15 loc) • 454 B
TypeScript
import { Intrinsic } from "./private/intrinsic";
/**
* An intrinsic Token that represents a reference to a construct.
*
* References are recorded.
*/
export declare abstract class Reference extends Intrinsic {
/**
* Check whether this is actually a Reference
*/
static isReference(x: any): x is Reference;
readonly target: IConstruct;
constructor(value: any, target: IConstruct);
}
import { IConstruct } from "./construct";