Amazon Cognito · Schema

NewDeviceMetadataType

The new device metadata type.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
DeviceKey object
DeviceGroupKey object
View JSON Schema on GitHub

JSON Schema

user-pools-new-device-metadata-type-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-new-device-metadata-type-schema.json",
  "title": "NewDeviceMetadataType",
  "description": "The new device metadata type.",
  "type": "object",
  "properties": {
    "DeviceKey": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeviceKeyType"
        },
        {
          "description": "The device key."
        }
      ]
    },
    "DeviceGroupKey": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StringType"
        },
        {
          "description": "The device group key."
        }
      ]
    }
  }
}