cdktg
Version:
Agile Threat Modeling as Code
15 lines (14 loc) • 395 B
TypeScript
import { Construct } from "constructs";
export interface ResourceProps {
readonly description?: string;
}
export declare abstract class Resource extends Construct {
readonly id: string;
readonly title: string;
readonly description?: string;
constructor(scope: Construct, id: string, props: ResourceProps);
/**
* @internal
*/
abstract _toThreagile(): any;
}