Struct rusoto_cognito_sync::ListRecordsResponse[][src]

pub struct ListRecordsResponse {
    pub count: Option<i64>,
    pub dataset_deleted_after_requested_sync_count: Option<bool>,
    pub dataset_exists: Option<bool>,
    pub dataset_sync_count: Option<i64>,
    pub last_modified_by: Option<String>,
    pub merged_dataset_names: Option<Vec<String>>,
    pub next_token: Option<String>,
    pub records: Option<Vec<Record>>,
    pub sync_session_token: Option<String>,
}

Returned for a successful ListRecordsRequest.

Fields

Total number of records.

A boolean value specifying whether to delete the dataset locally.

Indicates whether the dataset exists.

Server sync count for this dataset.

The user/device that made the last change to this record.

Names of merged datasets.

A pagination token for obtaining the next page of results.

A list of all records.

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

Trait Implementations

impl Default for ListRecordsResponse
[src]

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

impl Debug for ListRecordsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for ListRecordsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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