import { _UnmarshalledRoleMapping } from './_RoleMapping'; import * as __aws_sdk_types from '@aws-js-sdk-v3-prerelease/types'; /** *
Returned in response to a successful GetIdentityPoolRoles operation.
An identity pool ID in the format REGION:GUID.
*/ IdentityPoolId?: string; /** *The map of roles associated with this pool. Currently only authenticated and unauthenticated roles are supported.
*/ Roles?: { [key: string]: string; }; /** *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".
*/ RoleMappings?: { [key: string]: _UnmarshalledRoleMapping; }; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }