[][src]Struct rusoto_cognito_identity::UnlinkDeveloperIdentityInput

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

developer_provider_name: String

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

developer_user_identifier: String

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

identity_id: String

A unique identifier in the format REGION:GUID.

identity_pool_id: String

An identity pool ID in the format REGION:GUID.

Trait Implementations

impl Clone for UnlinkDeveloperIdentityInput[src]

impl Debug for UnlinkDeveloperIdentityInput[src]

impl Default for UnlinkDeveloperIdentityInput[src]

impl PartialEq<UnlinkDeveloperIdentityInput> for UnlinkDeveloperIdentityInput[src]

impl Serialize for UnlinkDeveloperIdentityInput[src]

impl StructuralPartialEq for UnlinkDeveloperIdentityInput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.