Amazon Cognito · Schema

DeleteUserPoolRequest

Represents the request to delete a user pool.

AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

Properties

Name Type Description
UserPoolId object
View JSON Schema on GitHub

JSON Schema

cognito-idp-delete-user-pool-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "UserPoolId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserPoolIdType"
        },
        {
          "description": "The user pool ID for the user pool you want to delete."
        }
      ]
    }
  },
  "required": [
    "UserPoolId"
  ],
  "description": "Represents the request to delete a user pool.",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-schema/cognito-idp-delete-user-pool-request-schema.json",
  "title": "DeleteUserPoolRequest"
}