Interface CfnSqlInjectionMatchSet.FieldToMatchProperty

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

@Stability(Stable) public static interface CfnSqlInjectionMatchSet.FieldToMatchProperty extends software.amazon.jsii.JsiiSerializable
The part of a web request that you want AWS WAF to inspect, such as a specific header or a query string.

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.waf.regional.*;
 FieldToMatchProperty fieldToMatchProperty = FieldToMatchProperty.builder()
         .type("type")
         // the properties below are optional
         .data("data")
         .build();
 

See Also: