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]

[src]

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

impl Debug for SetIdentityPoolRolesInput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for SetIdentityPoolRolesInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations