interface CaptchaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WAFv2.CfnRuleGroup.CaptchaProperty |
Java | software.amazon.awscdk.services.wafv2.CfnRuleGroup.CaptchaProperty |
Python | aws_cdk.aws_wafv2.CfnRuleGroup.CaptchaProperty |
TypeScript | @aws-cdk/aws-wafv2 » CfnRuleGroup » CaptchaProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as wafv2 from '@aws-cdk/aws-wafv2';
const captchaProperty: wafv2.CfnRuleGroup.CaptchaProperty = {
customRequestHandling: {
insertHeaders: [{
name: 'name',
value: 'value',
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| custom | IResolvable | Custom | CfnRuleGroup.CaptchaProperty.CustomRequestHandling. |
customRequestHandling?
Type:
IResolvable | Custom
(optional)
CfnRuleGroup.CaptchaProperty.CustomRequestHandling.

.NET
Java
Python
TypeScript