Class CfnWebACL.CaptchaConfigProperty
Specifies how AWS WAF should handle CAPTCHA evaluations for rules that don't have their own CaptchaConfig settings.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.WAFv2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnWebACL.CaptchaConfigProperty : CfnWebACL.ICaptchaConfigProperty
Syntax (vb)
Public Class CfnWebACL.CaptchaConfigProperty Implements CfnWebACL.ICaptchaConfigProperty
Remarks
If you don't specify this, AWS WAF uses its default settings for CaptchaConfig .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.WAFv2;
var captchaConfigProperty = new CaptchaConfigProperty {
ImmunityTimeProperty = new ImmunityTimePropertyProperty {
ImmunityTime = 123
}
};
Synopsis
Constructors
| CaptchaConfigProperty() | Specifies how AWS WAF should handle |
Properties
| ImmunityTimeProperty | Determines how long a |
Constructors
CaptchaConfigProperty()
Specifies how AWS WAF should handle CAPTCHA evaluations for rules that don't have their own CaptchaConfig settings.
public CaptchaConfigProperty()
Remarks
If you don't specify this, AWS WAF uses its default settings for CaptchaConfig .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.WAFv2;
var captchaConfigProperty = new CaptchaConfigProperty {
ImmunityTimeProperty = new ImmunityTimePropertyProperty {
ImmunityTime = 123
}
};
Properties
ImmunityTimeProperty
Determines how long a CAPTCHA timestamp in the token remains valid after the client successfully solves a CAPTCHA puzzle.
public object? ImmunityTimeProperty { get; set; }