Struct rusoto_cognito_identity::GetIdentityPoolRolesResponse [] [src]

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

Returned in response to a successful GetIdentityPoolRoles operation.

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".

The map of roles associated with this pool. Currently only authenticated and unauthenticated roles are supported.

Trait Implementations

impl Default for GetIdentityPoolRolesResponse
[src]

[src]

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

impl Debug for GetIdentityPoolRolesResponse
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for GetIdentityPoolRolesResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations