Struct rusoto_cognito_idp::ProviderUserIdentifierType[][src]

pub struct ProviderUserIdentifierType {
    pub provider_attribute_name: Option<String>,
    pub provider_attribute_value: Option<String>,
    pub provider_name: Option<String>,
}

A container for information about an identity provider for a user pool.

Fields

The name of the provider attribute to link to, for example, NameID.

The value of the provider attribute to link to, for example, xxxxx_account.

The name of the provider, for example, Facebook, Google, or Login with Amazon.

Trait Implementations

impl Default for ProviderUserIdentifierType
[src]

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

impl Debug for ProviderUserIdentifierType
[src]

Formats the value using the given formatter. Read more

impl Clone for ProviderUserIdentifierType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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