Amazon Cognito · Schema

ListUserPoolsRequest

Represents the request to list user pools.

AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

Properties

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

JSON Schema

cognito-idp-list-user-pools-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "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."
        }
      ]
    },
    "MaxResults": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PoolQueryLimitType"
        },
        {
          "description": "The maximum number of results you want the request to return when listing the user pools."
        }
      ]
    }
  },
  "required": [
    "MaxResults"
  ],
  "description": "Represents the request to list user pools.",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-schema/cognito-idp-list-user-pools-request-schema.json",
  "title": "ListUserPoolsRequest"
}