Interface CfnFirewallPolicy.StatelessRuleGroupReferenceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFirewallPolicy.StatelessRuleGroupReferenceProperty.Jsii$Proxy
- Enclosing class:
CfnFirewallPolicy
@Stability(Stable)
public static interface CfnFirewallPolicy.StatelessRuleGroupReferenceProperty
extends software.amazon.jsii.JsiiSerializable
Identifier for a single stateless rule group, used in a firewall policy to refer to the 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.networkfirewall.*; StatelessRuleGroupReferenceProperty statelessRuleGroupReferenceProperty = StatelessRuleGroupReferenceProperty.builder() .priority(123) .resourceArn("resourceArn") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFirewallPolicy.StatelessRuleGroupReferenceProperty
static final class
An implementation forCfnFirewallPolicy.StatelessRuleGroupReferenceProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
An integer setting that indicates the order in which to run the stateless rule groups in a singleFirewallPolicy
.The Amazon Resource Name (ARN) of the stateless rule group.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPriority
An integer setting that indicates the order in which to run the stateless rule groups in a singleFirewallPolicy
.Network Firewall applies each stateless rule group to a packet starting with the group that has the lowest priority setting. You must ensure that the priority settings are unique within each policy.
-
getResourceArn
The Amazon Resource Name (ARN) of the stateless rule group. -
builder
-