interface ClientSideActionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WAFv2.Mixins.CfnWebACLPropsMixin.ClientSideActionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswafv2/mixins#CfnWebACLPropsMixin_ClientSideActionConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.wafv2.mixins.CfnWebACLPropsMixin.ClientSideActionConfigProperty |
Python | aws_cdk.mixins_preview.aws_wafv2.mixins.CfnWebACLPropsMixin.ClientSideActionConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_wafv2 » mixins » CfnWebACLPropsMixin » 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 { mixins as wafv2_mixins } from '@aws-cdk/mixins-preview/aws-wafv2';
const clientSideActionConfigProperty: wafv2_mixins.CfnWebACLPropsMixin.ClientSideActionConfigProperty = {
challenge: {
exemptUriRegularExpressions: [{
regexString: 'regexString',
}],
sensitivity: 'sensitivity',
usageOfAction: 'usageOfAction',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| challenge? | IResolvable | Client | Configuration for the use of the AWSManagedRulesAntiDDoSRuleSet rules ChallengeAllDuringEvent and ChallengeDDoSRequests . |
challenge?
Type:
IResolvable | Client
(optional)
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