Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GetIdentityPoolRolesResponse

import type { GetIdentityPoolRolesResponse } from "https://aws-api.deno.dev/v0.3/services/cognitoidentity.ts?docs=full";

Returned in response to a successful GetIdentityPoolRoles operation.

interface GetIdentityPoolRolesResponse {
IdentityPoolId?: string | null;
RoleMappings?: {
[key: string]: RoleMapping | null | undefined;
}
| null;
Roles?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
IdentityPoolId?: string | null
[src]

An identity pool ID in the format REGION:GUID.

§
RoleMappings?: {
[key: string]: RoleMapping | null | undefined;
}
| null
[src]

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.us-east-1.amazonaws.com/us-east-1_abcdefghi:app_client_id".

§
Roles?: {
[key: string]: string | null | undefined;
}
| null
[src]

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