interface ExcludedRuleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WAFv2.CfnWebACL.ExcludedRuleProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswafv2#CfnWebACL_ExcludedRuleProperty |
Java | software.amazon.awscdk.services.wafv2.CfnWebACL.ExcludedRuleProperty |
Python | aws_cdk.aws_wafv2.CfnWebACL.ExcludedRuleProperty |
TypeScript | aws-cdk-lib » 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 { aws_wafv2 as wafv2 } from 'aws-cdk-lib';
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
Go
Java
Python
TypeScript