Amazon Cognito · JSON Structure

User Pools Device Type Structure

The device type.

Type: object Properties: 5
AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

DeviceType is a JSON Structure definition published by Amazon Cognito, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

DeviceKey DeviceAttributes DeviceCreateDate DeviceLastModifiedDate DeviceLastAuthenticatedDate

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cognito/refs/heads/main/json-structure/user-pools-device-type-structure.json",
  "name": "DeviceType",
  "description": "The device type.",
  "type": "object",
  "properties": {
    "DeviceKey": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeviceKeyType"
        },
        {
          "description": "The device key."
        }
      ]
    },
    "DeviceAttributes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AttributeListType"
        },
        {
          "description": "The device attributes."
        }
      ]
    },
    "DeviceCreateDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DateType"
        },
        {
          "description": "The creation date of the device."
        }
      ]
    },
    "DeviceLastModifiedDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DateType"
        },
        {
          "description": "The date and time, in <a href=\"https://www.iso.org/iso-8601-date-and-time-format.html\">ISO 8601</a> format, when the item was modified."
        }
      ]
    },
    "DeviceLastAuthenticatedDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DateType"
        },
        {
          "description": "The date when the device was last authenticated."
        }
      ]
    }
  }
}