Interface CfnFirewallPolicy.PolicyVariablesProperty

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

@Stability(Stable) public static interface CfnFirewallPolicy.PolicyVariablesProperty extends software.amazon.jsii.JsiiSerializable
Contains variables that you can use to override default Suricata settings in your firewall policy.

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.networkfirewall.*;
 PolicyVariablesProperty policyVariablesProperty = PolicyVariablesProperty.builder()
         .ruleVariables(Map.of(
                 "ruleVariablesKey", Map.of(
                         "definition", List.of("definition"))))
         .build();