import { _SqlInjectionMatchTuple, _UnmarshalledSqlInjectionMatchTuple } from "./_SqlInjectionMatchTuple"; /** *

Specifies the part of a web request that you want to inspect for snippets of malicious SQL code and indicates whether you want to add the specification to a SqlInjectionMatchSet or delete it from a SqlInjectionMatchSet.

*/ export interface _SqlInjectionMatchSetUpdate { /** *

Specify INSERT to add a SqlInjectionMatchSetUpdate to a SqlInjectionMatchSet. Use DELETE to remove a SqlInjectionMatchSetUpdate from a SqlInjectionMatchSet.

*/ Action: "INSERT" | "DELETE" | string; /** *

Specifies the part of a web request that you want AWS WAF to inspect for snippets of malicious SQL code and, if you want AWS WAF to inspect a header, the name of the header.

*/ SqlInjectionMatchTuple: _SqlInjectionMatchTuple; } export interface _UnmarshalledSqlInjectionMatchSetUpdate extends _SqlInjectionMatchSetUpdate { /** *

Specifies the part of a web request that you want AWS WAF to inspect for snippets of malicious SQL code and, if you want AWS WAF to inspect a header, the name of the header.

*/ SqlInjectionMatchTuple: _UnmarshalledSqlInjectionMatchTuple; }