Is it possible to setting automation of email verification when amplify auth add ?
See original GitHub issueSimply, usage or feature request. I want to automate email verification. It is easy to realize using lambda pre-signup event trigger. In aws-amplify/cli, is it possible ?
var AWS = require('aws-sdk');
exports.handler = (event, context, callback) => {
var confirm = {
"autoConfirmUser": true,
"autoVerifyEmail": true
};
event.response = confirm;
context.done(null, event);
};
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (2 by maintainers)
Top Results From Across the Web
Amplify Auth signup flow, account creation -- Impossible to set ...
I expected the Cognito console (User Pools -> General Settings -> MFA and verification section) to: Show "Email only" as the selected answer,...
Read more >Authentication - Email-only sign up and sign in - JavaScript
Enabling users to authenticate with only their email - JavaScript - AWS Amplify Docs.
Read more >How to create a one-time password authentication flow using ...
How to create a one-time password authentication flow using Amplify Flutter ; Open Amazon SES homepage and select Create Identity. Figure 1. Open ......
Read more >Overcoming shortfalls of AWS Cognito Part1 – Email OTP
We have to initiate the sign-in process from the client by setting the authentication flow type as CUSTOM_AUTH. This triggers the below chain...
Read more >Amazon Cognito Authentication - Cypress Documentation
Using the AWS Amplify Framework Authentication Library, we are able to ... Add 'aws-amplify' library into your application // Configure Auth category with ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
We’ve added support for Lambda Trigger support for the dynamo tables managed/added by the CLI using the
amplify add storage
command. Let me know if you find that useful. Please take a look at https://aws.amazon.com/blogs/mobile/amplify-framework-adds-supports-for-aws-lambda-triggers-in-auth-and-storage-categories/ for more details.@yukitaka13-1110 We’re actively working on automating this for you using lambda triggers. You would see an update regarding this soon. I’ll update this thread once we have the release out.