Struct rusoto_ds::ListIpRoutesRequest[][src]

pub struct ListIpRoutesRequest {
    pub directory_id: String,
    pub limit: Option<i64>,
    pub next_token: Option<String>,
}

Fields

Identifier (ID) of the directory for which you want to retrieve the IP addresses.

Maximum number of items to return. If this value is zero, the maximum number of items is specified by the limitations of the operation.

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

Trait Implementations

impl Default for ListIpRoutesRequest
[src]

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

impl Debug for ListIpRoutesRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ListIpRoutesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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