Amazon Cognito · Schema

UnprocessedIdentityId

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

AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

Properties

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

JSON Schema

cognito-identity-unprocessed-identity-id-schema.json Raw ↑
{
  "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."
        }
      ]
    }
  },
  "description": "An array of UnprocessedIdentityId objects, each of which contains an ErrorCode and IdentityId.",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-schema/cognito-identity-unprocessed-identity-id-schema.json",
  "title": "UnprocessedIdentityId"
}