interface ExcludedRuleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WAFv2.CfnWebACL.ExcludedRuleProperty |
Java | software.amazon.awscdk.services.wafv2.CfnWebACL.ExcludedRuleProperty |
Python | aws_cdk.aws_wafv2.CfnWebACL.ExcludedRuleProperty |
TypeScript | @aws-cdk/aws-wafv2 » CfnWebACL » ExcludedRuleProperty |
Specifies a single rule in a rule group whose action you want to override to Count .
Instead of this option, use
RuleActionOverrides. It accepts any valid action setting, includingCount.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as wafv2 from '@aws-cdk/aws-wafv2';
const excludedRuleProperty: wafv2.CfnWebACL.ExcludedRuleProperty = {
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the rule whose action you want to override to Count . |
name
Type:
string
The name of the rule whose action you want to override to Count .

.NET
Java
Python
TypeScript