raindancers-network
Version:
Extensions to the ec2.Vpc Constructs
16 lines (15 loc) • 443 B
TypeScript
import * as constructs from 'constructs';
export declare enum DNSFirewallActions {
ALLOW = "ALLOW",
BLOCK = "BLOCK",
ALERT = "ALERT"
}
export declare enum DNSFirewallBlockResponse {
NODATA = "NODATA",
NXDOMAIN = "NXDOMAIN",
OVERRIDE = "OVERRIDE"
}
export declare class AwsManagedDNSFirewallRuleGroup extends constructs.Construct {
resolverRuleId: string;
constructor(scope: constructs.Construct, id: string);
}