Struct rusoto_waf_regional::ListSqlInjectionMatchSetsResponse[][src]

pub struct ListSqlInjectionMatchSetsResponse {
    pub next_marker: Option<String>,
    pub sql_injection_match_sets: Option<Vec<SqlInjectionMatchSetSummary>>,
}

The response to a ListSqlInjectionMatchSets request.

Fields

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

An array of SqlInjectionMatchSetSummary objects.

Trait Implementations

impl Default for ListSqlInjectionMatchSetsResponse
[src]

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

impl Debug for ListSqlInjectionMatchSetsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for ListSqlInjectionMatchSetsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListSqlInjectionMatchSetsResponse
[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