Struct rusoto_cognito_idp::CreateIdentityProviderRequest[][src]

pub struct CreateIdentityProviderRequest {
    pub attribute_mapping: Option<HashMap<String, String>>,
    pub idp_identifiers: Option<Vec<String>>,
    pub provider_details: HashMap<String, String>,
    pub provider_name: String,
    pub provider_type: String,
    pub user_pool_id: String,
}

Fields

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

A list of identity provider identifiers.

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 CreateIdentityProviderRequest
[src]

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

impl Debug for CreateIdentityProviderRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateIdentityProviderRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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