Amazon Cognito · Schema

ListUserPoolsResponse

Represents the response to list user pools.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
UserPools object
NextToken object
View JSON Schema on GitHub

JSON Schema

user-pools-list-user-pools-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cognito/refs/heads/main/json-schema/user-pools-list-user-pools-response-schema.json",
  "title": "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."
        }
      ]
    }
  }
}