Interface CfnWebACLPropsMixin.DataProtectProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnWebACLPropsMixin.DataProtectProperty.Jsii$Proxy
Enclosing class:
CfnWebACLPropsMixin

@Stability(Stable) public static interface CfnWebACLPropsMixin.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.cfnpropertymixins.services.wafv2.*;
 DataProtectProperty dataProtectProperty = DataProtectProperty.builder()
         .action("action")
         .excludeRateBasedDetails(false)
         .excludeRuleMatchDetails(false)
         .field(FieldToProtectProperty.builder()
                 .fieldKeys(List.of("fieldKeys"))
                 .fieldType("fieldType")
                 .build())
         .build();
 

See Also: