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 rule group 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRuleGroup.RuleVariablesPropertystatic final classAn 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.Returns union: either
IResolvableor Mapinvalid input: '<'String, eitherIResolvableorCfnRuleGroup.IPSetProperty>- See Also:
-
getPortSets
A list of port ranges.Returns union: either
IResolvableor Mapinvalid input: '<'String, eitherIResolvableorCfnRuleGroup.PortSetProperty>- See Also:
-
builder
-