Struct rusoto_shield::ListAttacksResponse[][src]

pub struct ListAttacksResponse {
    pub attack_summaries: Option<Vec<AttackSummary>>,
    pub next_token: Option<String>,
}

Fields

The attack information for the specified time range.

The token returned by a previous call to indicate that there is more data available. If not null, more results are available. Pass this value for the NextMarker parameter in a subsequent call to ListAttacks to retrieve the next set of items.

Trait Implementations

impl Default for ListAttacksResponse
[src]

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

impl Debug for ListAttacksResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for ListAttacksResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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