I am using below command to list the UserPool Names.
aws cognito-idp list-user-pools --max-results 60 --region us-west-2 --query 'UserPools[*].{Names:Name}'
Now my all UserPool Names contains cust_
as prefix. And i want to remove that from whole list.
I know i can achieve this using jq. But how?
Any help will be highly appreciated.
Thanks!