[][src]Struct rusoto_cognito_identity::GetIdInput

pub struct GetIdInput {
    pub account_id: Option<String>,
    pub identity_pool_id: String,
    pub logins: Option<HashMap<String, String>>,
}

Input to the GetId action.

Fields

account_id: Option<String>

A standard AWS account ID (9+ digits).

identity_pool_id: String

An identity pool ID in the format REGION:GUID.

logins: Option<HashMap<String, String>>

A set of optional name-value pairs that map provider names to provider tokens. The available provider names for Logins are as follows:

  • Facebook: graph.facebook.com

  • Amazon Cognito user pool: cognito-idp.<region>.amazonaws.com/<YOURUSERPOOLID>, for example, cognito-idp.us-east-1.amazonaws.com/us-east-1123456789.

  • Google: accounts.google.com

  • Amazon: www.amazon.com

  • Twitter: api.twitter.com

  • Digits: www.digits.com

Trait Implementations

impl Clone for GetIdInput[src]

impl Debug for GetIdInput[src]

impl Default for GetIdInput[src]

impl PartialEq<GetIdInput> for GetIdInput[src]

impl Serialize for GetIdInput[src]

impl StructuralPartialEq for GetIdInput[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.