Amazon Cognito · Schema

UnprocessedIdentityId

An array of UnprocessedIdentityId objects, each of which contains an ErrorCode and IdentityId.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
IdentityId object
ErrorCode object
View JSON Schema on GitHub

JSON Schema

identity-pools-unprocessed-identity-id-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-unprocessed-identity-id-schema.json",
  "title": "UnprocessedIdentityId",
  "description": "An array of UnprocessedIdentityId objects, each of which contains an ErrorCode and IdentityId.",
  "type": "object",
  "properties": {
    "IdentityId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdentityId"
        },
        {
          "description": "A unique identifier in the format REGION:GUID."
        }
      ]
    },
    "ErrorCode": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ErrorCode"
        },
        {
          "description": "The error code indicating the type of error that occurred."
        }
      ]
    }
  }
}