Struct rusoto_shield::ListProtectionsResponse[][src]

pub struct ListProtectionsResponse {
    pub next_token: Option<String>,
    pub protections: Option<Vec<Protection>>,
}

Fields

If you specify a value for MaxResults and you have more Protections than the value of MaxResults, AWS Shield Advanced returns a NextToken value in the response that allows you to list another group of Protections. For the second and subsequent ListProtections requests, specify the value of NextToken from the previous response to get information about another batch of Protections.

The array of enabled Protection objects.

Trait Implementations

impl Default for ListProtectionsResponse
[src]

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

impl Debug for ListProtectionsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for ListProtectionsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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