/** *

Returned by ListRegexPatternSets. Each RegexPatternSetSummary object includes the Name and RegexPatternSetId for one RegexPatternSet.

*/ export interface _RegexPatternSetSummary { /** *

The RegexPatternSetId for a 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.

RegexPatternSetId 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; } export declare type _UnmarshalledRegexPatternSetSummary = _RegexPatternSetSummary;