verify_software_token
Validate TOTP codes for AWS Cognito users to complete multi-factor authentication setup or sign-in processes requiring software token verification.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
totpCode | Yes | ||
username | Yes |
Input Schema (JSON Schema)
{
"properties": {
"totpCode": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"username",
"totpCode"
],
"type": "object"
}