Amazon Cognito · Schema

GetDeviceResponse

Gets the device response.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
Device object
View JSON Schema on GitHub

JSON Schema

user-pools-get-device-response-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-response-schema.json",
  "title": "GetDeviceResponse",
  "description": "Gets the device response.",
  "type": "object",
  "properties": {
    "Device": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeviceType"
        },
        {
          "description": "The device."
        }
      ]
    }
  },
  "required": [
    "Device"
  ]
}