Amazon Cognito · Schema

DeviceSecretVerifierConfigType

The device verifier against which it is authenticated.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
PasswordVerifier object
Salt object
View JSON Schema on GitHub

JSON Schema

user-pools-device-secret-verifier-config-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-device-secret-verifier-config-type-schema.json",
  "title": "DeviceSecretVerifierConfigType",
  "description": "The device verifier against which it is authenticated.",
  "type": "object",
  "properties": {
    "PasswordVerifier": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StringType"
        },
        {
          "description": "The password verifier."
        }
      ]
    },
    "Salt": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StringType"
        },
        {
          "description": "The <a href=\"https://en.wikipedia.org/wiki/Salt_(cryptography)\">salt</a> "
        }
      ]
    }
  }
}