Amazon Cognito · Schema

ConfirmDeviceRequest

Confirms the device request.

AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

Properties

Name Type Description
AccessToken object
DeviceKey object
DeviceSecretVerifierConfig object
DeviceName object
View JSON Schema on GitHub

JSON Schema

cognito-idp-confirm-device-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "AccessToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TokenModelType"
        },
        {
          "description": "A valid access token that Amazon Cognito issued to the user whose device you want to confirm."
        }
      ]
    },
    "DeviceKey": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeviceKeyType"
        },
        {
          "description": "The device key."
        }
      ]
    },
    "DeviceSecretVerifierConfig": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeviceSecretVerifierConfigType"
        },
        {
          "description": "The configuration of the device secret verifier."
        }
      ]
    },
    "DeviceName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeviceNameType"
        },
        {
          "description": "The device name."
        }
      ]
    }
  },
  "required": [
    "AccessToken",
    "DeviceKey"
  ],
  "description": "Confirms the device request.",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-schema/cognito-idp-confirm-device-request-schema.json",
  "title": "ConfirmDeviceRequest"
}