Struct rusoto_waf_regional::ListRegexMatchSetsResponse[][src]

pub struct ListRegexMatchSetsResponse {
    pub next_marker: Option<String>,
    pub regex_match_sets: Option<Vec<RegexMatchSetSummary>>,
}

Fields

If you have more RegexMatchSet objects than the number that you specified for Limit in the request, the response includes a NextMarker value. To list more RegexMatchSet objects, submit another ListRegexMatchSets request, and specify the NextMarker value from the response in the NextMarker value in the next request.

An array of RegexMatchSetSummary objects.

Trait Implementations

impl Default for ListRegexMatchSetsResponse
[src]

Returns the "default value" for a type. Read more

impl Debug for ListRegexMatchSetsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for ListRegexMatchSetsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListRegexMatchSetsResponse
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations