interface StatelessRuleGroupReferenceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NetworkFirewall.Mixins.CfnFirewallPolicyPropsMixin.StatelessRuleGroupReferenceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnetworkfirewall/mixins#CfnFirewallPolicyPropsMixin_StatelessRuleGroupReferenceProperty |
Java | software.amazon.awscdk.mixins.preview.services.networkfirewall.mixins.CfnFirewallPolicyPropsMixin.StatelessRuleGroupReferenceProperty |
Python | aws_cdk.mixins_preview.aws_networkfirewall.mixins.CfnFirewallPolicyPropsMixin.StatelessRuleGroupReferenceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_networkfirewall » mixins » CfnFirewallPolicyPropsMixin » StatelessRuleGroupReferenceProperty |
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 { mixins as networkfirewall_mixins } from '@aws-cdk/mixins-preview/aws-networkfirewall';
const statelessRuleGroupReferenceProperty: networkfirewall_mixins.CfnFirewallPolicyPropsMixin.StatelessRuleGroupReferenceProperty = {
priority: 123,
resourceArn: 'resourceArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| priority? | number | An integer setting that indicates the order in which to run the stateless rule groups in a single firewall policy. |
| resource | string | The Amazon Resource Name (ARN) of the stateless rule group. |
priority?
Type:
number
(optional)
An integer setting that indicates the order in which to run the stateless rule groups in a single firewall policy.
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.
resourceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the stateless rule group.

.NET
Go
Java
Python
TypeScript