Struct rusoto_cognito_identity::UnlinkDeveloperIdentityInput[][src]

pub struct UnlinkDeveloperIdentityInput {
    pub developer_provider_name: String,
    pub developer_user_identifier: String,
    pub identity_id: String,
    pub identity_pool_id: String,
}

Input to the UnlinkDeveloperIdentity action.

Fields

The "domain" by which Cognito will refer to your users.

A unique ID used by your backend authentication process to identify a user.

A unique identifier in the format REGION:GUID.

An identity pool ID in the format REGION:GUID.

Trait Implementations

impl Default for UnlinkDeveloperIdentityInput
[src]

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

impl Debug for UnlinkDeveloperIdentityInput
[src]

Formats the value using the given formatter. Read more

impl Clone for UnlinkDeveloperIdentityInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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