Amazon Cognito · Schema

DeviceSecretVerifierConfigType

The device verifier against which it is authenticated.

AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

Properties

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

JSON Schema

cognito-idp-device-secret-verifier-config-type-schema.json Raw ↑
{
  "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> "
        }
      ]
    }
  },
  "description": "The device verifier against which it is authenticated.",
  "$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-device-secret-verifier-config-type-schema.json",
  "title": "DeviceSecretVerifierConfigType"
}