UNPKG

cdk-insights

Version:

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

6 lines (5 loc) 419 B
import type { Stack } from 'aws-cdk-lib'; import type { CDKAnnotation, MetadataCollector } from './collectStackAnnotations.types'; export declare const createDefaultMetadataCollector: () => MetadataCollector; export declare const createAnnotationCollector: (metadataCollector: MetadataCollector) => (stack: Stack) => CDKAnnotation[]; export declare const collectAnnotationsFromStack: (stack: Stack) => CDKAnnotation[];