Need some guidance for an app development

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.

  1. 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?

  2. 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)

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

I’m not sure about 1.

2 - You can do this with CDK which is possible within an SST stack. I don’t believe there’s a construct for Cognito in SST just yet
3 - You’d add a lambda to consume a DynamoDB stream - some info here

Hope that helps