I have an app idea which i am trying to build. The app is more or less like a forum but it has some custom use-cases. I have decided to implement the backend using aws serverless but there are couple of things which are confusing me.
-
I am planning to start app development with api gateway. Is it possible to add appsync layer later on once the backend is built using api-gateway?
-
One of the use case that i have is to add more information during signup. I will be using cognito to do the signup and post-signup lambda to persist the addtional details in dynamodb. Can this lambda be created using serverless stack (it wouldn’t have any rest api end point)
-
I’d need to build some dynamo triggers to trigger a lambda (so that it can update new posts for a user). Can this lambda be created using serverless stack and so on?
Thanks