@Stability(value=Stable)
public static interface CfnFirewallPolicy.StatefulRuleGroupReferenceProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
StatefulRuleGroupReferenceProperty statefulRuleGroupReferenceProperty = StatefulRuleGroupReferenceProperty.builder()
.resourceArn("resourceArn")
// the properties below are optional
.override(StatefulRuleGroupOverrideProperty.builder()
.action("action")
.build())
.priority(123)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnFirewallPolicy.StatefulRuleGroupReferenceProperty.Builder
A builder for
CfnFirewallPolicy.StatefulRuleGroupReferenceProperty |
static class |
CfnFirewallPolicy.StatefulRuleGroupReferenceProperty.Jsii$Proxy
An implementation for
CfnFirewallPolicy.StatefulRuleGroupReferenceProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnFirewallPolicy.StatefulRuleGroupReferenceProperty.Builder |
builder() |
default Object |
getOverride()
The action that allows the policy owner to override the behavior of the rule group within a policy.
|
default Number |
getPriority()
An integer setting that indicates the order in which to run the stateful rule groups in a single `FirewallPolicy` .
|
String |
getResourceArn()
The Amazon Resource Name (ARN) of the stateful rule group.
|
@Stability(value=Stable) @NotNull String getResourceArn()
@Stability(value=Stable) @Nullable default Object getOverride()
@Stability(value=Stable) @Nullable default Number getPriority()
This setting only applies to firewall policies that specify the STRICT_ORDER rule order in the stateful engine options settings.
Network Firewall evalutes each stateful rule group against a packet starting with the group that has the lowest priority setting. You must ensure that the priority settings are unique within each policy.
You can change the priority settings of your rule groups at any time. To make it easier to insert rule groups later, number them so there's a wide range in between, for example use 100, 200, and so on.
@Stability(value=Stable) static CfnFirewallPolicy.StatefulRuleGroupReferenceProperty.Builder builder()
Copyright © 2022. All rights reserved.