Interface CfnWebACL.ClientSideActionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWebACL.ClientSideActionProperty.Jsii$Proxy
- Enclosing class:
CfnWebACL
@Stability(Stable)
public static interface CfnWebACL.ClientSideActionProperty
extends software.amazon.jsii.JsiiSerializable
Client side action config for AntiDDOS AMR.
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.*;
ClientSideActionProperty clientSideActionProperty = ClientSideActionProperty.builder()
.usageOfAction("usageOfAction")
// the properties below are optional
.exemptUriRegularExpressions(List.of(RegexProperty.builder()
.regexString("regexString")
.build()))
.sensitivity("sensitivity")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWebACL.ClientSideActionPropertystatic final classAn implementation forCfnWebACL.ClientSideActionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getUsageOfAction
- See Also:
-
getExemptUriRegularExpressions
- See Also:
-
getSensitivity
- See Also:
-
builder
-