Struct rusoto_cognito_sync::RegisterDeviceRequest[][src]

pub struct RegisterDeviceRequest {
    pub identity_id: String,
    pub identity_pool_id: String,
    pub platform: String,
    pub token: String,
}

A request to RegisterDevice.

Fields

The unique ID for this identity.

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

The SNS platform type (e.g. GCM, SDM, APNS, APNS_SANDBOX).

The push token.

Trait Implementations

impl Default for RegisterDeviceRequest
[src]

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

impl Debug for RegisterDeviceRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for RegisterDeviceRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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