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]

[src]

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

impl Debug for CreateIdentityProviderRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CreateIdentityProviderRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations