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]

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

impl Debug for GetIdentityPoolRolesResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for GetIdentityPoolRolesResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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