Amazon Cognito · Schema

ListUsersResponse

The response from the request to list users.

AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

Properties

Name Type Description
Users object
PaginationToken object
View JSON Schema on GitHub

JSON Schema

cognito-idp-list-users-response-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "Users": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UsersListType"
        },
        {
          "description": "The users returned in the request to list users."
        }
      ]
    },
    "PaginationToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SearchPaginationTokenType"
        },
        {
          "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."
        }
      ]
    }
  },
  "description": "The response from the request to list users.",
  "$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-users-response-schema.json",
  "title": "ListUsersResponse"
}