-
Notifications
You must be signed in to change notification settings - Fork 343
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing userNotFound
field in "create/verify auth challenge" Cognito user pool events
#718
Comments
kikuomax
added a commit
to kikuomax/aws-lambda-rust-runtime
that referenced
this issue
Nov 4, 2023
- Adds `user_not_found` field to: - `CognitoEventUserPoolsCreateAuthChallengeRequest` - `CognitoEventUserPoolsVerifyAuthChallengeRequest` - Adds test cases where `user_not_found` becomes `true` for: - `CognitoEventUserPoolsDefineAuthChallengeRequest` - `CognitoEventUserPoolsCreateAuthChallengeRequest` - `CognitoEventUserPoolsVerifyAuthChallengeRequest` issue awslabs#718
Merged
2 tasks
calavera
pushed a commit
that referenced
this issue
Nov 4, 2023
…nito user pool events (#719) * Add user_not_found to Create/Verify auth challenge events - Adds `user_not_found` field to: - `CognitoEventUserPoolsCreateAuthChallengeRequest` - `CognitoEventUserPoolsVerifyAuthChallengeRequest` - Adds test cases where `user_not_found` becomes `true` for: - `CognitoEventUserPoolsDefineAuthChallengeRequest` - `CognitoEventUserPoolsCreateAuthChallengeRequest` - `CognitoEventUserPoolsVerifyAuthChallengeRequest` issue #718 * Fix coding style with cargo fmt
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
According to AWS documentation, "create/verify auth challenge" Cognito user pool events should have
userNotFound
field, and they did as far as I tested on my AWS account. However,user_not_found
fields are missing in:CognitoEventUserPoolsCreateAuthChallengeRequest
CognitoEventUserPoolsVerifyAuthChallengeRequest
They should have
user_not_found
field similar toCognitoEventUserPoolsDefineAuthChallengeRequest
.userNotFound
information helps us when we have to generate dummy challenges for non-existing users so that users' presence is not disclosed.The text was updated successfully, but these errors were encountered: