UNPKG

cdk-insights

Version:

AWS CDK security and cost analysis tool with AI-powered insights

15 lines (14 loc) 351 B
import type { IConstruct } from 'constructs/lib/construct'; export interface CDKMetadataEntry { type: string; data?: string; path?: string; } export interface CDKAnnotation { path: string; type: string; data?: string; } export interface MetadataCollector { collectMetadata: (construct: IConstruct) => CDKMetadataEntry[]; }