Struct rusoto_cognito_sync::DeleteDatasetResponse[][src]

pub struct DeleteDatasetResponse {
    pub dataset: Option<Dataset>,
}

Response to a successful DeleteDataset request.

Fields

A collection of data for an identity pool. An identity pool can have multiple datasets. A dataset is per identity and can be general or associated with a particular entity in an application (like a saved game). Datasets are automatically created if they don't exist. Data is synced by dataset, and a dataset can hold up to 1MB of key-value pairs.

Trait Implementations

impl Default for DeleteDatasetResponse
[src]

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

impl Debug for DeleteDatasetResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteDatasetResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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