Interface CfnFirewallRuleGroup.FirewallRuleProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFirewallRuleGroup.FirewallRuleProperty.Jsii$Proxy
Enclosing class:
CfnFirewallRuleGroup

@Stability(Stable) public static interface CfnFirewallRuleGroup.FirewallRuleProperty extends software.amazon.jsii.JsiiSerializable
A single firewall rule in a rule group.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.route53resolver.*;
 FirewallRuleProperty firewallRuleProperty = FirewallRuleProperty.builder()
         .action("action")
         .firewallDomainListId("firewallDomainListId")
         .priority(123)
         // the properties below are optional
         .blockOverrideDnsType("blockOverrideDnsType")
         .blockOverrideDomain("blockOverrideDomain")
         .blockOverrideTtl(123)
         .blockResponse("blockResponse")
         .qtype("qtype")
         .build();
 

See Also: