Amazon Cognito · Schema

ListDevicesRequest

Represents the request to list the devices.

AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

Properties

Name Type Description
AccessToken object
Limit object
PaginationToken object
View JSON Schema on GitHub

JSON Schema

cognito-idp-list-devices-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "AccessToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TokenModelType"
        },
        {
          "description": "A valid access token that Amazon Cognito issued to the user whose list of devices you want to view."
        }
      ]
    },
    "Limit": {
      "allOf": [
        {
          "$ref": "#/components/schemas/QueryLimitType"
        },
        {
          "description": "The limit of the device request."
        }
      ]
    },
    "PaginationToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SearchPaginationTokenType"
        },
        {
          "description": "The pagination token for the list request."
        }
      ]
    }
  },
  "required": [
    "AccessToken"
  ],
  "description": "Represents the request to list the devices.",
  "$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-devices-request-schema.json",
  "title": "ListDevicesRequest"
}