Struct rusoto_cognito_sync::ListRecordsRequest[][src]

pub struct ListRecordsRequest {
    pub dataset_name: String,
    pub identity_id: String,
    pub identity_pool_id: String,
    pub last_sync_count: Option<i64>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub sync_session_token: Option<String>,
}

A request for a list of records.

Fields

A string of up to 128 characters. Allowed characters are a-z, A-Z, 0-9, '_' (underscore), '-' (dash), and '.' (dot).

A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region.

A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region.

The last server sync count for this record.

The maximum number of results to be returned.

A pagination token for obtaining the next page of results.

A token containing a session ID, identity ID, and expiration.

Trait Implementations

impl Default for ListRecordsRequest
[src]

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

impl Debug for ListRecordsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ListRecordsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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