Amazon Cognito · Schema

DeleteIdentityPoolInput

Input to the DeleteIdentityPool action.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
IdentityPoolId object
View JSON Schema on GitHub

JSON Schema

identity-pools-delete-identity-pool-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-identity-pool-input-schema.json",
  "title": "DeleteIdentityPoolInput",
  "description": "Input to the DeleteIdentityPool action.",
  "type": "object",
  "properties": {
    "IdentityPoolId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdentityPoolId"
        },
        {
          "description": "An identity pool ID in the format REGION:GUID."
        }
      ]
    }
  },
  "required": [
    "IdentityPoolId"
  ]
}