Interface CfnRuleGroup.CaptchaConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRuleGroup.CaptchaConfigProperty.Jsii$Proxy
- Enclosing class:
- CfnRuleGroup
@Stability(Stable)
public static interface CfnRuleGroup.CaptchaConfigProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.wafv2.*; CaptchaConfigProperty captchaConfigProperty = CaptchaConfigProperty.builder() .immunityTimeProperty(ImmunityTimePropertyProperty.builder() .immunityTime(123) .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnRuleGroup.CaptchaConfigProperty
static final class
An implementation forCfnRuleGroup.CaptchaConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getImmunityTimeProperty
Determines how long aCAPTCHA
timestamp in the token remains valid after the client successfully solves aCAPTCHA
puzzle. -
builder
-