Пользовательские атрибуты имеют имя custom:xxx
, где xxx
- это имя вашего пользовательского атрибута:
{
"version": "1",
...,
"userName": "...",
"triggerSource": "PostAuthentication_Authentication",
"request": {
"userAttributes": {
"sub": "...",
"cognito:user_status": "CONFIRMED",
...
"locale": "en",
...
"custom:xxx": "yyy"
},
"newDeviceUsed": true
},
"response": {}
}
Так что для вашего ref_number
это должно быть event.request.userAttributes['custom:ref_number']
.
Имя пользователя просто event.userName
.