{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cognito/refs/heads/main/json-structure/user-pools-get-device-request-structure.json", "name": "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" ] }