Amazon Cognito · JSON Structure

Cognito Idp Admin List Devices Request Structure

Represents the request to list devices, as an administrator.

Type: object Properties: 4 Required: 2
AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

AdminListDevicesRequest is a JSON Structure definition published by Amazon Cognito, describing 4 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

UserPoolId Username Limit PaginationToken

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "UserPoolId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserPoolIdType"
        },
        {
          "description": "The user pool ID."
        }
      ]
    },
    "Username": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UsernameType"
        },
        {
          "description": "The user name."
        }
      ]
    },
    "Limit": {
      "allOf": [
        {
          "$ref": "#/components/schemas/QueryLimitType"
        },
        {
          "description": "The limit of the devices request."
        }
      ]
    },
    "PaginationToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SearchPaginationTokenType"
        },
        {
          "description": "The pagination token."
        }
      ]
    }
  },
  "required": [
    "UserPoolId",
    "Username"
  ],
  "description": "Represents the request to list devices, as an administrator.",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-structure/cognito-idp-admin-list-devices-request-structure.json",
  "name": "AdminListDevicesRequest"
}