cdk-insights
Version:
AWS CDK security and cost analysis tool with AI-powered insights
11 lines (10 loc) • 466 B
TypeScript
import type { CloudFormationStack, Issue, IssueGroup } from '../../types/analysis.types';
type SynthesizedCdkStacks = {
stacks: Record<string, CloudFormationStack>;
inlineFindings: Issue[];
pathToLogicalId: Record<string, string>;
recommendationMapPerStack: Record<string, Record<string, IssueGroup>>;
assetSourcePaths: Record<string, string>;
};
export declare const synthesizeCdkStacks: (stackName?: string) => SynthesizedCdkStacks;
export {};