Struct rusoto_cognito_sync::SubscribeToDatasetRequest[][src]

pub struct SubscribeToDatasetRequest {
    pub dataset_name: String,
    pub device_id: String,
    pub identity_id: String,
    pub identity_pool_id: String,
}

A request to SubscribeToDatasetRequest.

Fields

The name of the dataset to subcribe to.

The unique ID generated for this device by Cognito.

Unique ID for this identity.

A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. The ID of the pool to which the identity belongs.

Trait Implementations

impl Default for SubscribeToDatasetRequest
[src]

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

impl Debug for SubscribeToDatasetRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for SubscribeToDatasetRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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