Amazon Cognito · Schema

DeleteIdentitiesInput

Input to the DeleteIdentities action.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
IdentityIdsToDelete object
View JSON Schema on GitHub

JSON Schema

identity-pools-delete-identities-input-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/identity-pools-delete-identities-input-schema.json",
  "title": "DeleteIdentitiesInput",
  "description": "Input to the <code>DeleteIdentities</code> action.",
  "type": "object",
  "properties": {
    "IdentityIdsToDelete": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdentityIdList"
        },
        {
          "description": "A list of 1-60 identities that you want to delete."
        }
      ]
    }
  },
  "required": [
    "IdentityIdsToDelete"
  ]
}