UNPKG

cdk-insights

Version:

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

9 lines (8 loc) 392 B
import type { Issue } from '../../types/analysis.types'; type ExtractInlineNagFindings = (output: string, options: Record<string, string>) => Issue[]; type RunCdkSynthDependencies = { extractInlineNagFindings: ExtractInlineNagFindings; stackName?: string; }; export declare const runCdkSynth: ({ extractInlineNagFindings, stackName, }: RunCdkSynthDependencies) => Issue[]; export {};