/** *

In an UpdateRegexPatternSet request, RegexPatternSetUpdate specifies whether to insert or delete a RegexPatternString and includes the settings for the RegexPatternString.

*/ export interface _RegexPatternSetUpdate { /** *

Specifies whether to insert or delete a RegexPatternString.

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

Specifies the regular expression (regex) pattern that you want AWS WAF to search for, such as B[a@]dB[o0]t.

*/ RegexPatternString: string; } export declare type _UnmarshalledRegexPatternSetUpdate = _RegexPatternSetUpdate;