Amazon Cognito · Schema

GetDeviceRequest

Represents the request to get the device.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
DeviceKey object
AccessToken object
View JSON Schema on GitHub

JSON Schema

user-pools-get-device-request-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-get-device-request-schema.json",
  "title": "GetDeviceRequest",
  "description": "Represents the request to get the device.",
  "type": "object",
  "properties": {
    "DeviceKey": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeviceKeyType"
        },
        {
          "description": "The device key."
        }
      ]
    },
    "AccessToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TokenModelType"
        },
        {
          "description": "A valid access token that Amazon Cognito issued to the user whose device information you want to request."
        }
      ]
    }
  },
  "required": [
    "DeviceKey"
  ]
}