interface StatefulRuleGroupOverrideProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.NetworkFirewall.CfnFirewallPolicy.StatefulRuleGroupOverrideProperty |
Java | software.amazon.awscdk.services.networkfirewall.CfnFirewallPolicy.StatefulRuleGroupOverrideProperty |
Python | aws_cdk.aws_networkfirewall.CfnFirewallPolicy.StatefulRuleGroupOverrideProperty |
TypeScript | @aws-cdk/aws-networkfirewall » CfnFirewallPolicy » StatefulRuleGroupOverrideProperty |
The setting that allows the policy owner to change the behavior of the rule group within a policy.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as networkfirewall from '@aws-cdk/aws-networkfirewall';
const statefulRuleGroupOverrideProperty: networkfirewall.CfnFirewallPolicy.StatefulRuleGroupOverrideProperty = {
action: 'action',
};
Properties
| Name | Type | Description |
|---|---|---|
| action? | string | The action that changes the rule group from DROP to ALERT . |
action?
Type:
string
(optional)
The action that changes the rule group from DROP to ALERT .
This only applies to managed rule groups.

.NET
Java
Python
TypeScript