/** * Curated registry of compliance-critical CDK Mixins that cdk-insights * checks for stack-wide consistency. Keep this list small and high-signal - * each entry should represent a property where a partial application is * almost certainly an oversight rather than a deliberate exception. * * `cfnResourceType` is the CloudFormation resource type the mixin targets * (per the AWS docs: each mixin targets exactly one resource type and is * named after it). `displayName` is the short human-readable mixin name. */ export type ComplianceCriticalMixin = { fqn: string; cfnResourceType: string; displayName: string; }; export declare const COMPLIANCE_CRITICAL_MIXINS: ComplianceCriticalMixin[];