Amazon Cognito · Schema

DeleteUserPoolClientRequest

Represents the request to delete a user pool client.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
UserPoolId object
ClientId object
View JSON Schema on GitHub

JSON Schema

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