question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Is it possible to setting automation of email verification when amplify auth add ?

See original GitHub issue

Simply, 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:closed
  • Created 4 years ago
  • Comments:6 (2 by maintainers)

github_iconTop GitHub Comments

1reaction
kaustavghosh06commented, Jul 15, 2019

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.

1reaction
kaustavghosh06commented, Jul 3, 2019

@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.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found