UNPKG

@sheplu/aws-safe-modules

Version:

A collection of CDKTF modules for AWS, with security and compliance in mind

12 lines (11 loc) 379 B
import { Construct } from 'constructs'; import { Wafv2WebAclConfig } from '@cdktf/provider-aws/lib/wafv2-web-acl'; export type ManagedWAFConfig = { logGroup: string; logPolicy: string; waf: Wafv2WebAclConfig; }; export declare class ManagedWAF extends Construct { readonly instance: any; constructor(scope: Construct, id: string, config: ManagedWAFConfig); }