Forrest logo
back to the aws tool

aws-cognito-idp:tldr:77e09

aws-cognito-idp: Delete a specific user pool.
$ aws cognito-idp delete-user-pool --user-pool-id ${user_pool_id}
try on your machine

This command is used to delete a user pool in Amazon Cognito using the AWS Command Line Interface (CLI). Here's a breakdown of the command:

  • aws: This is the command to invoke the AWS CLI.
  • cognito-idp: This refers to the Cognito Identity Provider service in AWS.
  • delete-user-pool: This is the specific command to delete a user pool in Cognito.
  • --user-pool-id ${user_pool_id}: This parameter specifies the user pool ID of the user pool you want to delete. ${user_pool_id} is a placeholder that should be replaced with the actual ID of the user pool.

To use this command, you need to have the AWS CLI installed and authenticated with the necessary credentials.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the aws tool