Amazon Cognito · Schema

ListDevicesResponse

Represents the response to list devices.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

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

JSON Schema

user-pools-list-devices-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-devices-response-schema.json",
  "title": "ListDevicesResponse",
  "description": "Represents the response to list devices.",
  "type": "object",
  "properties": {
    "Devices": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeviceListType"
        },
        {
          "description": "The devices returned in the list devices response."
        }
      ]
    },
    "PaginationToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SearchPaginationTokenType"
        },
        {
          "description": "The pagination token for the list device response."
        }
      ]
    }
  }
}