Amazon Cognito · Schema

ListIdentitiesResponse

The response to a ListIdentities request.

AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

Properties

Name Type Description
IdentityPoolId object
Identities object
NextToken object
View JSON Schema on GitHub

JSON Schema

cognito-identity-list-identities-response-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "IdentityPoolId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdentityPoolId"
        },
        {
          "description": "An identity pool ID in the format REGION:GUID."
        }
      ]
    },
    "Identities": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdentitiesList"
        },
        {
          "description": "An object containing a set of identities and associated mappings."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PaginationKey"
        },
        {
          "description": "A pagination token."
        }
      ]
    }
  },
  "description": "The response to a ListIdentities request.",
  "$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-list-identities-response-schema.json",
  "title": "ListIdentitiesResponse"
}