/** *

Returned by ListRegexMatchSets. Each RegexMatchSetSummary object includes the Name and RegexMatchSetId for one RegexMatchSet.

*/ export interface _RegexMatchSetSummary { /** *

The RegexMatchSetId for a RegexMatchSet. You use RegexMatchSetId to get information about a RegexMatchSet, update a RegexMatchSet, remove a RegexMatchSet from a Rule, and delete a RegexMatchSet from AWS WAF.

RegexMatchSetId is returned by CreateRegexMatchSet and by ListRegexMatchSets.

*/ RegexMatchSetId: string; /** *

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

*/ Name: string; } export declare type _UnmarshalledRegexMatchSetSummary = _RegexMatchSetSummary;