Struct rusoto_shield::ListProtectionsRequest[][src]

pub struct ListProtectionsRequest {
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
}

Fields

The maximum number of Protection objects to be returned. If this is left blank the first 20 results will be returned.

The ListProtectionsRequest.NextToken value from a previous call to ListProtections. Pass null if this is the first call.

Trait Implementations

impl Default for ListProtectionsRequest
[src]

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

impl Debug for ListProtectionsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ListProtectionsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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