I need to recreate a new User Pool with exactly the same settings as another one and I am wondering what is the best way to do it, or if it is a standard way that I am not aware of. (maybe a faster way than using the AWS console)
My guess is, using AWS CLI :
- Get user pool details: describe-user-pool
- Then create a new one with the same details : create-user-pool
Any thoughts?