Interface CfnWebACL.ChallengeConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWebACL.ChallengeConfigProperty.Jsii$Proxy
- Enclosing class:
- CfnWebACL
@Stability(Stable)
public static interface CfnWebACL.ChallengeConfigProperty
extends software.amazon.jsii.JsiiSerializable
Specifies how AWS WAF should handle
Challenge 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.*;
ChallengeConfigProperty challengeConfigProperty = ChallengeConfigProperty.builder()
.immunityTimeProperty(ImmunityTimePropertyProperty.builder()
.immunityTime(123)
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWebACL.ChallengeConfigPropertystatic final classAn implementation forCfnWebACL.ChallengeConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getImmunityTimeProperty
Determines how long a challenge timestamp in the token remains valid after the client successfully responds to a challenge. -
builder
-