1
votes

I am using aws lambda, api gateway and dynamodb for serverless backend.

I've created over 30 lambda functions.

Clients request for adding lastModifiedTime on every api call.
For example, every time I send api request on endPoint /user, I need to record that timestamp.

I am thinking of creating a new table in dynamodb storing the lastModifiedTime and path, but I do so, I need to add some code of All of my tables.

Is there any better way to do that?