Amazon Cognito · JSON Structure

Cognito Idp Device Type Structure

The device type.

Type: object Properties: 5
AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

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 ↑
{
  "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 last modified date of the device."
        }
      ]
    },
    "DeviceLastAuthenticatedDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DateType"
        },
        {
          "description": "The date when the device was last authenticated."
        }
      ]
    }
  },
  "description": "The device type.",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-structure/cognito-idp-device-type-structure.json",
  "name": "DeviceType"
}