I am using the amplify framework from AWS to build a webapp in Vue.js.
As for now, I am using the cognito service to authenticate users.
I want to trigger a lambda function when the user first create his account. I already created a lambda function using the following command:
amplify function add
I tested my function using this command:
amplify function invoke myLambdaFunction
And now I want to trigger this function when an user create an account.
Any idea how can I do that ?
Thank you, Alexis