Amazon Cognito · Schema

AdminGetDeviceRequest

Represents the request to get the device, as an administrator.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
DeviceKey object
UserPoolId object
Username object
View JSON Schema on GitHub

JSON Schema

user-pools-admin-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-admin-get-device-request-schema.json",
  "title": "AdminGetDeviceRequest",
  "description": "Represents the request to get the device, as an administrator.",
  "type": "object",
  "properties": {
    "DeviceKey": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeviceKeyType"
        },
        {
          "description": "The device key."
        }
      ]
    },
    "UserPoolId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserPoolIdType"
        },
        {
          "description": "The user pool ID."
        }
      ]
    },
    "Username": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UsernameType"
        },
        {
          "description": "The user name."
        }
      ]
    }
  },
  "required": [
    "DeviceKey",
    "UserPoolId",
    "Username"
  ]
}