Interface CfnWebACL.CaptchaConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWebACL.CaptchaConfigProperty.Jsii$Proxy
- Enclosing class:
- CfnWebACL
@Stability(Stable)
public static interface CfnWebACL.CaptchaConfigProperty
extends software.amazon.jsii.JsiiSerializable
Specifies how AWS WAF should handle
CAPTCHA evaluations for rules that don't have their own CaptchaConfig settings.
If you don't specify this, AWS WAF uses its default settings for CaptchaConfig .
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.wafv2.*;
CaptchaConfigProperty captchaConfigProperty = CaptchaConfigProperty.builder()
.immunityTimeProperty(ImmunityTimePropertyProperty.builder()
.immunityTime(123)
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWebACL.CaptchaConfigPropertystatic final classAn implementation forCfnWebACL.CaptchaConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getImmunityTimeProperty
Determines how long aCAPTCHAtimestamp in the token remains valid after the client successfully solves aCAPTCHApuzzle. -
builder
-