Amazon Cognito · JSON Structure

Cognito Identity List Identities Response Structure

The response to a ListIdentities request.

Type: object Properties: 3
AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

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

Properties

IdentityPoolId Identities NextToken

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

JSON Structure

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-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-structure/cognito-identity-list-identities-response-structure.json",
  "name": "ListIdentitiesResponse"
}