import { _RegexMatchTuple, _UnmarshalledRegexMatchTuple } from "./_RegexMatchTuple"; /** *

In an UpdateRegexMatchSet request, RegexMatchSetUpdate specifies whether to insert or delete a RegexMatchTuple and includes the settings for the RegexMatchTuple.

*/ export interface _RegexMatchSetUpdate { /** *

Specifies whether to insert or delete a RegexMatchTuple.

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

Information about the part of a web request that you want AWS WAF to inspect and the identifier of the regular expression (regex) pattern that you want AWS WAF to search for. If you specify DELETE for the value of Action, the RegexMatchTuple values must exactly match the values in the RegexMatchTuple that you want to delete from the RegexMatchSet.

*/ RegexMatchTuple: _RegexMatchTuple; } export interface _UnmarshalledRegexMatchSetUpdate extends _RegexMatchSetUpdate { /** *

Information about the part of a web request that you want AWS WAF to inspect and the identifier of the regular expression (regex) pattern that you want AWS WAF to search for. If you specify DELETE for the value of Action, the RegexMatchTuple values must exactly match the values in the RegexMatchTuple that you want to delete from the RegexMatchSet.

*/ RegexMatchTuple: _UnmarshalledRegexMatchTuple; }