interface ExcludedRuleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WAFv2.Mixins.CfnWebACLPropsMixin.ExcludedRuleProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswafv2/mixins#CfnWebACLPropsMixin_ExcludedRuleProperty |
Java | software.amazon.awscdk.mixins.preview.services.wafv2.mixins.CfnWebACLPropsMixin.ExcludedRuleProperty |
Python | aws_cdk.mixins_preview.aws_wafv2.mixins.CfnWebACLPropsMixin.ExcludedRuleProperty |
TypeScript | @aws-cdk/mixins-preview » aws_wafv2 » mixins » 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 { mixins as wafv2_mixins } from '@aws-cdk/mixins-preview/aws-wafv2';
const excludedRuleProperty: wafv2_mixins.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