interface ClientSideActionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WAFv2.CfnWebACL.ClientSideActionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswafv2#CfnWebACL_ClientSideActionConfigProperty |
Java | software.amazon.awscdk.services.wafv2.CfnWebACL.ClientSideActionConfigProperty |
Python | aws_cdk.aws_wafv2.CfnWebACL.ClientSideActionConfigProperty |
TypeScript | aws-cdk-lib » aws_wafv2 » CfnWebACL » ClientSideActionConfigProperty |
This is part of the configuration for the managed rules AWSManagedRulesAntiDDoSRuleSet in ManagedRuleGroupConfig .
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 clientSideActionConfigProperty: wafv2.CfnWebACL.ClientSideActionConfigProperty = {
challenge: {
usageOfAction: 'usageOfAction',
// the properties below are optional
exemptUriRegularExpressions: [{
regexString: 'regexString',
}],
sensitivity: 'sensitivity',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| challenge | IResolvable | Client | Configuration for the use of the AWSManagedRulesAntiDDoSRuleSet rules ChallengeAllDuringEvent and ChallengeDDoSRequests . |
challenge
Type:
IResolvable | Client
Configuration for the use of the AWSManagedRulesAntiDDoSRuleSet rules ChallengeAllDuringEvent and ChallengeDDoSRequests .
This setting isn't related to the configuration of the
Challengeaction itself. It only configures the use of the two anti-DDoS rules named here.
You can enable or disable the use of these rules, and you can configure how to use them when they are enabled.

.NET
Go
Java
Python
TypeScript