interface CaptchaConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.WAFv2.CfnRuleGroupPropsMixin.CaptchaConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awswafv2#CfnRuleGroupPropsMixin_CaptchaConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.wafv2.CfnRuleGroupPropsMixin.CaptchaConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_wafv2.CfnRuleGroupPropsMixin.CaptchaConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_wafv2 » CfnRuleGroupPropsMixin » CaptchaConfigProperty |
Specifies how AWS WAF should handle CAPTCHA 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 { aws_wafv2 as wafv2 } from '@aws-cdk/cfn-property-mixins';
const captchaConfigProperty: wafv2.CfnRuleGroupPropsMixin.CaptchaConfigProperty = {
immunityTimeProperty: {
immunityTime: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| immunity | IResolvable | Immunity | Determines how long a CAPTCHA timestamp in the token remains valid after the client successfully solves a CAPTCHA puzzle. |
immunityTimeProperty?
Type:
IResolvable | Immunity
(optional)
Determines how long a CAPTCHA timestamp in the token remains valid after the client successfully solves a CAPTCHA puzzle.

.NET
Go
Java
Python
TypeScript