AdminGetUser only works with User Username, not Sub

0

I exec this command:

aws cognito-idp admin-get-user --user-pool-id "us-west-2_dkEwXXXXX" --username "ae163f5c-15f5-4496-XXXX-1703d45XXXXX" --profile devops

and I get

An error occurred (UserNotFoundException) when calling the AdminGetUser operation: User does not exist.

The documentation states: https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminGetUser.html The username of the user that you want to query or modify. The value of this parameter is typically your user's username, but it can be any of their alias attributes. If username isn't an alias attribute in your user pool, this value must be the sub of a local user or the username of a user from a third-party IdP.

THIS DOESN'T WORK!

Here is a screen shot of the user. Cognito User Page

profile picture
質問済み 1ヶ月前80ビュー
2回答
0

Looking at your screenshot, you have email mapped to user name, so that value needs to be passed in as username

aws cognito-idp admin-get-user --user-pool-id us-west-2_dkEwXXXXX --username testuser@sty-holdings.com

If you want to query by sub, use ListUsers and filter. Here is an AWS CLI example for list-users

aws cognito-idp list-users --user-pool-id us-west-2_dkEwXXXXX --filter "sub = \"ae163f5c-15f5-4496-XXXX-1703d45XXXXX\"" 
profile pictureAWS
回答済み 1ヶ月前
profile picture
エキスパート
レビュー済み 1ヶ月前
0

To make sure I understand, are you saying the documentation is wrong? "If username isn't an alias attribute in your user pool, this value must be the sub of a local user or the username of a user from a third-party IdP." So admin-get-user does not work with sub?

Scott
回答済み 1ヶ月前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ