/** *

The RegexPatternSet specifies the regular expression (regex) pattern that you want AWS WAF to search for, such as B[a@]dB[o0]t. You can then configure AWS WAF to reject those requests.

*/ export interface _RegexPatternSet { /** *

The identifier for the RegexPatternSet. You use RegexPatternSetId to get information about a RegexPatternSet, update a RegexPatternSet, remove a RegexPatternSet from a RegexMatchSet, and delete a RegexPatternSet from AWS WAF.

RegexMatchSetId is returned by CreateRegexPatternSet and by ListRegexPatternSets.

*/ RegexPatternSetId: string; /** *

A friendly name or description of the RegexPatternSet. You can't change Name after you create a RegexPatternSet.

*/ Name?: string; /** *

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

*/ RegexPatternStrings: Array | Iterable; } export interface _UnmarshalledRegexPatternSet extends _RegexPatternSet { /** *

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

*/ RegexPatternStrings: Array; }