web-dev-qa-db-ja.com

CognitoでIDプールIDを見つける場所

CognitoコンソールのIDプールはどこにありますか。ドキュメントで述べたように、それはフォーマットを持っています:

IdentityPoolId

REGION:GUID形式のIDプールID。

しかし、私はPool IdおよびPool ARNコンソールで。これは形式が異なります。

16
Alex Po

Aws cliでIdentityPooIdを取得できます:

aws cognito-identity list-identity-pools --max-results 10

command は、アカウントに登録されているすべてのCognito IDプールを返します。

{
    "IdentityPools": [
        {
            "IdentityPoolId": "XX-XXXX-X:XXXXXXXX-XXXX-1234-abcd-1234567890ab",
            "IdentityPoolName": "<some custom name>"
        }
    ]
}
9
elbik

発見できる Identity pool IDを選択した場合Manage Federated Identitiesページで https://eu-west-1.console.aws.Amazon.com/cognito/home?region=eu-west-1 を作成し、フェデレーションIDを作成します。

Alt text

9
Alex Po

ダッシュボードに移動した場合は、URLからIDプールIDをプルすることもできます。

enter image description here

2