/** * WAW038: RDS Publicly Accessible * * Flags RDS instances with PubliclyAccessible: true — the instance gets a * public IP/DNS name reachable from the internet instead of staying inside * the VPC. (DBCluster has no PubliclyAccessible property; that's set on the * member DBInstance.) */ import type { PostSynthCheck, PostSynthContext, PostSynthDiagnostic } from "@intentius/chant/lint/post-synth"; export declare function checkRdsPubliclyAccessible(ctx: PostSynthContext): PostSynthDiagnostic[]; export declare const waw038: PostSynthCheck; //# sourceMappingURL=waw038.d.ts.map