Interface CfnWebACL.ClientSideActionConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWebACL.ClientSideActionConfigProperty.Jsii$Proxy
- Enclosing class:
CfnWebACL
@Stability(Stable)
public static interface CfnWebACL.ClientSideActionConfigProperty
extends software.amazon.jsii.JsiiSerializable
This is part of the configuration for the managed rules
AWSManagedRulesAntiDDoSRuleSet
in ManagedRuleGroupConfig
.
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.*; ClientSideActionConfigProperty clientSideActionConfigProperty = ClientSideActionConfigProperty.builder() .challenge(ClientSideActionProperty.builder() .usageOfAction("usageOfAction") // the properties below are optional .exemptUriRegularExpressions(List.of(RegexProperty.builder() .regexString("regexString") .build())) .sensitivity("sensitivity") .build()) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnWebACL.ClientSideActionConfigProperty
static final class
An implementation forCfnWebACL.ClientSideActionConfigProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Configuration for the use of theAWSManagedRulesAntiDDoSRuleSet
rulesChallengeAllDuringEvent
andChallengeDDoSRequests
.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getChallenge
Configuration for the use of theAWSManagedRulesAntiDDoSRuleSet
rulesChallengeAllDuringEvent
andChallengeDDoSRequests
.This setting isn't related to the configuration of the
Challenge
action itself. It only configures the use of the two anti-DDoS rules named here.You can enable or disable the use of these rules, and you can configure how to use them when they are enabled.
- See Also:
-
builder
-