How to get the user pool ARN from AWS CLI

0

How can I obtain AWS CLI from the Pool ARN, or the account id of a user pool that I created.

thanks

    
asked by Fredy Tovar 04.12.2017 в 16:32
source

1 answer

0
aws configure

aws cognito-idp list-user-pools --max-results 5

Indicating in max-results the number of pools that you want to list. For each pool, a set of attributes returns between which is the id.

You can also find the id directly from the console, accessing the cognito service and entering the user pool in question.

    
answered by 11.05.2018 в 12:44