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: