@Stability(value=Stable)
public static interface CfnFirewallPolicy.StatelessRuleGroupReferenceProperty
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.*;
StatelessRuleGroupReferenceProperty statelessRuleGroupReferenceProperty = StatelessRuleGroupReferenceProperty.builder()
.priority(123)
.resourceArn("resourceArn")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnFirewallPolicy.StatelessRuleGroupReferenceProperty.Builder
A builder for
CfnFirewallPolicy.StatelessRuleGroupReferenceProperty |
static class |
CfnFirewallPolicy.StatelessRuleGroupReferenceProperty.Jsii$Proxy
An implementation for
CfnFirewallPolicy.StatelessRuleGroupReferenceProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnFirewallPolicy.StatelessRuleGroupReferenceProperty.Builder |
builder() |
Number |
getPriority()
An integer setting that indicates the order in which to run the stateless rule groups in a single `FirewallPolicy` .
|
String |
getResourceArn()
The Amazon Resource Name (ARN) of the stateless rule group.
|
@Stability(value=Stable) @NotNull Number getPriority()
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.
@Stability(value=Stable) @NotNull String getResourceArn()
@Stability(value=Stable) static CfnFirewallPolicy.StatelessRuleGroupReferenceProperty.Builder builder()
Copyright © 2022. All rights reserved.