Amazon Cognito · Schema

SoftwareTokenMfaConfigType

The type used for enabling software token MFA at the user pool level.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
Enabled object
View JSON Schema on GitHub

JSON Schema

user-pools-software-token-mfa-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-software-token-mfa-config-type-schema.json",
  "title": "SoftwareTokenMfaConfigType",
  "description": "The type used for enabling software token MFA at the user pool level.",
  "type": "object",
  "properties": {
    "Enabled": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BooleanType"
        },
        {
          "description": "Specifies whether software token MFA is activated."
        }
      ]
    }
  }
}