[][src]Struct rusoto_cognito_identity::GetIdentityPoolRolesResponse

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 Clone for GetIdentityPoolRolesResponse
[src]

Performs copy-assignment from source. Read more

impl Default for GetIdentityPoolRolesResponse
[src]

impl PartialEq<GetIdentityPoolRolesResponse> for GetIdentityPoolRolesResponse
[src]

impl Debug for GetIdentityPoolRolesResponse
[src]

impl<'de> Deserialize<'de> for GetIdentityPoolRolesResponse
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T