/** *

Specifies where in a web request to look for TargetString.

*/ export interface _FieldToMatch { /** *

The part of the web request that you want AWS WAF to search for a specified string. Parts of a request that you can search include the following:

*/ Type: "URI" | "QUERY_STRING" | "HEADER" | "METHOD" | "BODY" | "SINGLE_QUERY_ARG" | "ALL_QUERY_ARGS" | string; /** *

When the value of Type is HEADER, enter the name of the header that you want AWS WAF to search, for example, User-Agent or Referer. The name of the header is not case sensitive.

When the value of Type is SINGLE_QUERY_ARG, enter the name of the parameter that you want AWS WAF to search, for example, UserName or SalesRegion. The parameter name is not case sensitive.

If the value of Type is any other value, omit Data.

*/ Data?: string; } export declare type _UnmarshalledFieldToMatch = _FieldToMatch;