Struct rusoto_cognito_idp::ListDevicesRequest[][src]

pub struct ListDevicesRequest {
    pub access_token: String,
    pub limit: Option<i64>,
    pub pagination_token: Option<String>,
}

Represents the request to list the devices.

Fields

The access tokens for the request to list devices.

The limit of the device request.

The pagination token for the list request.

Trait Implementations

impl Default for ListDevicesRequest
[src]

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

impl Debug for ListDevicesRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ListDevicesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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