interface ExcludedRuleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.WAFv2.CfnWebACLPropsMixin.ExcludedRuleProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awswafv2#CfnWebACLPropsMixin_ExcludedRuleProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.wafv2.CfnWebACLPropsMixin.ExcludedRuleProperty |
Python | aws_cdk.cfn_property_mixins.aws_wafv2.CfnWebACLPropsMixin.ExcludedRuleProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_wafv2 » CfnWebACLPropsMixin » 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/cfn-property-mixins';
const excludedRuleProperty: wafv2.CfnWebACLPropsMixin.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
(optional)
The name of the rule whose action you want to override to Count .

.NET
Go
Java
Python
TypeScript