Interface CfnWebACLPropsMixin.FieldToProtectProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWebACLPropsMixin.FieldToProtectProperty.Jsii$Proxy
- Enclosing class:
CfnWebACLPropsMixin
@Stability(Stable)
public static interface CfnWebACLPropsMixin.FieldToProtectProperty
extends software.amazon.jsii.JsiiSerializable
Specifies a field type and keys to protect in stored web request data.
This is part of the data protection configuration for a web ACL.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.wafv2.*;
FieldToProtectProperty fieldToProtectProperty = FieldToProtectProperty.builder()
.fieldKeys(List.of("fieldKeys"))
.fieldType("fieldType")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWebACLPropsMixin.FieldToProtectPropertystatic final classAn implementation forCfnWebACLPropsMixin.FieldToProtectProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFieldKeys
Specifies the keys to protect for the specified field type.If you don't specify any key, then all keys for the field type are protected.
- See Also:
-
getFieldType
Specifies the web request component type to protect.- See Also:
-
builder
-