Interface IFirewallRuleGroupProps
(experimental) Properties for a Firewall Rule Group.
Namespace: Amazon.CDK.AWS.Route53Resolver.Alpha
Assembly: Amazon.CDK.AWS.Route53Resolver.Alpha.dll
Syntax (csharp)
public interface IFirewallRuleGroupProps
Syntax (vb)
Public Interface IFirewallRuleGroupProps
Remarks
Stability: Experimental
ExampleMetadata: infused
Examples
FirewallDomainList myBlockList;
new FirewallRuleGroup(this, "RuleGroup", new FirewallRuleGroupProps {
Rules = new [] { new FirewallRule {
Priority = 10,
FirewallDomainList = myBlockList,
// block and reply with NODATA
Action = FirewallRuleAction.Block()
} }
});
Synopsis
Properties
Name | (experimental) The name of the rule group. |
Rules | (experimental) A list of rules for this group. |
Properties
Name
(experimental) The name of the rule group.
virtual string Name { get; }
Property Value
System.String
Remarks
Default: - a CloudFormation generated name
Stability: Experimental
Rules
(experimental) A list of rules for this group.
virtual IFirewallRule[] Rules { get; }
Property Value
Remarks
Default: - no rules
Stability: Experimental