Interface CfnWebACL.DataProtectProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWebACL.DataProtectProperty.Jsii$Proxy
- Enclosing class:
CfnWebACL
@Stability(Stable)
public static interface CfnWebACL.DataProtectProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
DataProtectProperty dataProtectProperty = DataProtectProperty.builder()
.action("action")
.field(FieldToProtectProperty.builder()
.fieldType("fieldType")
// the properties below are optional
.fieldKeys(List.of("fieldKeys"))
.build())
// the properties below are optional
.excludeRateBasedDetails(false)
.excludeRuleMatchDetails(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWebACL.DataProtectPropertystatic final classAn implementation forCfnWebACL.DataProtectProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherBooleanorIResolvabledefault ObjectReturns union: eitherBooleanorIResolvablegetField()Field in log to protect.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAction
- See Also:
-
getField
Field in log to protect.Returns union: either
IResolvableorCfnWebACL.FieldToProtectProperty- See Also:
-
getExcludeRateBasedDetails
Returns union: eitherBooleanorIResolvable- See Also:
-
getExcludeRuleMatchDetails
Returns union: eitherBooleanorIResolvable- See Also:
-
builder
-