Interface CfnWebACL.SingleQueryArgumentProperty

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

@Stability(Stable) public static interface CfnWebACL.SingleQueryArgumentProperty extends software.amazon.jsii.JsiiSerializable
Inspect one query argument in the web request, identified by name, for example UserName or SalesRegion .

The name isn't case sensitive.

This is used to indicate the web request component to inspect, in the FieldToMatch specification.

Example JSON: "SingleQueryArgument": { "Name": "myArgument" }

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.*;
 SingleQueryArgumentProperty singleQueryArgumentProperty = SingleQueryArgumentProperty.builder()
         .name("name")
         .build();