aws.cognito_identity.get_identity_pool_roles
Example SQL Queries
SELECT * FROMaws.cognito_identity.get_identity_pool_rolesWHERE"identity_pool_id" = 'VALUE';Description
Gets the roles for an identity pool.
You must use AWS Developer credentials to call this API.
Table Definition
| Column Name | Column Data Type |
|---|---|
| identity_pool_id Required Input Column An identity pool ID in the format REGION:GUID. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| role_mappings 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". | MAP(VARCHAR, STRUCT( |
| roles The map of roles associated with this pool. Currently only authenticated and unauthenticated roles are supported. | MAP(VARCHAR, VARCHAR) |