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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnRuleGroup.RuleVariablesProperty
static final class
An implementation forCfnRuleGroup.RuleVariablesProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIpSets
A list of IP addresses and address ranges, in CIDR notation. -
getPortSets
A list of port ranges. -
builder
-