Amazon Cognito · JSON Structure

User Pools List User Pools Response Structure

Represents the response to list user pools.

Type: object Properties: 2
AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

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

Properties

UserPools NextToken

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/user-pools-list-user-pools-response-structure.json",
  "name": "ListUserPoolsResponse",
  "description": "Represents the response to list user pools.",
  "type": "object",
  "properties": {
    "UserPools": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserPoolListType"
        },
        {
          "description": "The user pools from the response to list users."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PaginationKeyType"
        },
        {
          "description": "An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list."
        }
      ]
    }
  }
}