Interface CfnRuleGroup.RuleVariablesProperty

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

@Stability(Stable) public static interface CfnRuleGroup.RuleVariablesProperty extends software.amazon.jsii.JsiiSerializable
Settings that are available for use in the rules in the RuleGroup where this is defined.

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.*;
 RuleVariablesProperty ruleVariablesProperty = RuleVariablesProperty.builder()
         .ipSets(Map.of(
                 "ipSetsKey", Map.of(
                         "definition", List.of("definition"))))
         .portSets(Map.of(
                 "portSetsKey", PortSetProperty.builder()
                         .definition(List.of("definition"))
                         .build()))
         .build();