Ale*_* Po 15 amazon-web-services amazon-cognito aws-cognito
Cognito Console中的标识池在哪里.如文档中所述,它具有以下格式:
IdentityPoolId
标识为REGION:GUID的标识池标识.
但我只看到Pool Id
并Pool ARN
在控制台中.哪种格式不同.
您可以找到Identity pool ID
是否Manage Federated Identities
在页面https://eu-west-1.console.aws.amazon.com/cognito/home?region=eu-west-1上选择并创建联合身份。
我可以设法IdentityPooId
通过aws cli:
aws cognito-identity list-identity-pools --max-results 10
Run Code Online (Sandbox Code Playgroud)
该命令返回为您的帐户注册的所有Cognito身份池。
{
"IdentityPools": [
{
"IdentityPoolId": "XX-XXXX-X:XXXXXXXX-XXXX-1234-abcd-1234567890ab",
"IdentityPoolName": "<some custom name>"
}
]
}
Run Code Online (Sandbox Code Playgroud)