Struct rusoto_cognito_identity::SetIdentityPoolRolesInput[][src]

pub struct SetIdentityPoolRolesInput {
    pub identity_pool_id: String,
    pub role_mappings: Option<HashMap<String, RoleMapping>>,
    pub roles: HashMap<String, String>,
}

Input to the SetIdentityPoolRoles action.

Fields

An identity pool ID in the format REGION:GUID.

How users for a specific identity provider are to mapped to roles. This is a string to RoleMapping object map. The string identifies the identity provider, for example, "graph.facebook.com" or "cognito-idp-east-1.amazonaws.com/us-east-1_abcdefghi:app_client_id".

Up to 25 rules can be specified per identity provider.

The map of roles associated with this pool. For a given role, the key will be either "authenticated" or "unauthenticated" and the value will be the Role ARN.

Trait Implementations

impl Default for SetIdentityPoolRolesInput
[src]

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

impl Debug for SetIdentityPoolRolesInput
[src]

Formats the value using the given formatter. Read more

impl Clone for SetIdentityPoolRolesInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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