Amazon Cognito · JSON Structure

Identity Pools Identity Description Structure

A description of the identity.

Type: object Properties: 4
AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

IdentityDescription is a JSON Structure definition published by Amazon Cognito, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

IdentityId Logins CreationDate LastModifiedDate

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cognito/refs/heads/main/json-structure/identity-pools-identity-description-structure.json",
  "name": "IdentityDescription",
  "description": "A description of the identity.",
  "type": "object",
  "properties": {
    "IdentityId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdentityId"
        },
        {
          "description": "A unique identifier in the format REGION:GUID."
        }
      ]
    },
    "Logins": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LoginsList"
        },
        {
          "description": "The provider names."
        }
      ]
    },
    "CreationDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DateType"
        },
        {
          "description": "Date on which the identity was created."
        }
      ]
    },
    "LastModifiedDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DateType"
        },
        {
          "description": "Date on which the identity was last modified."
        }
      ]
    }
  }
}