Struct rusoto_cognito_idp::IdentityProviderType[][src]

pub struct IdentityProviderType {
    pub attribute_mapping: Option<HashMap<String, String>>,
    pub creation_date: Option<f64>,
    pub idp_identifiers: Option<Vec<String>>,
    pub last_modified_date: Option<f64>,
    pub provider_details: Option<HashMap<String, String>>,
    pub provider_name: Option<String>,
    pub provider_type: Option<String>,
    pub user_pool_id: Option<String>,
}

A container for information about an identity provider.

Fields

A mapping of identity provider attributes to standard and custom user pool attributes.

The date the identity provider was created.

A list of identity provider identifiers.

The date the identity provider was last modified.

The identity provider details, such as MetadataURL and MetadataFile.

The identity provider name.

The identity provider type.

The user pool ID.

Trait Implementations

impl Default for IdentityProviderType
[src]

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

impl Debug for IdentityProviderType
[src]

Formats the value using the given formatter. Read more

impl Clone for IdentityProviderType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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