Struct rusoto_cognito_identity::GetOpenIdTokenInput[][src]

pub struct GetOpenIdTokenInput {
    pub identity_id: String,
    pub logins: Option<HashMap<String, String>>,
}

Input to the GetOpenIdToken action.

Fields

A unique identifier in the format REGION:GUID.

A set of optional name-value pairs that map provider names to provider tokens. When using graph.facebook.com and www.amazon.com, supply the access_token returned from the provider's authflow. For accounts.google.com, an Amazon Cognito Identity Provider, or any other OpenId Connect provider, always include the id_token.

Trait Implementations

impl Default for GetOpenIdTokenInput
[src]

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

impl Debug for GetOpenIdTokenInput
[src]

Formats the value using the given formatter. Read more

impl Clone for GetOpenIdTokenInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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