interface ChallengeConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WAFv2.Mixins.CfnWebACLPropsMixin.ChallengeConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswafv2/mixins#CfnWebACLPropsMixin_ChallengeConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.wafv2.mixins.CfnWebACLPropsMixin.ChallengeConfigProperty |
Python | aws_cdk.mixins_preview.aws_wafv2.mixins.CfnWebACLPropsMixin.ChallengeConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_wafv2 » mixins » CfnWebACLPropsMixin » ChallengeConfigProperty |
Specifies how AWS WAF should handle Challenge evaluations.
This is available at the web ACL level and in each rule.
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 challengeConfigProperty: wafv2_mixins.CfnWebACLPropsMixin.ChallengeConfigProperty = {
immunityTimeProperty: {
immunityTime: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| immunity | IResolvable | Immunity | Determines how long a challenge timestamp in the token remains valid after the client successfully responds to a challenge. |
immunityTimeProperty?
Type:
IResolvable | Immunity
(optional)
Determines how long a challenge timestamp in the token remains valid after the client successfully responds to a challenge.

.NET
Go
Java
Python
TypeScript