Is there any sample code or demos of a serverless.yml where you create API Gateway calls in AWS that talks to DynamoDb directly and not through a lambda function? You can do this through the AWS panel but would prefer to manage it through serverless. I have a use case where I need to query a key in dynamodb, for an open public api call, and writing even a 10 line lambda function to just query that adds overhead (time) to the call that’s pointless.
@ktwbc you able to resolve this? please share if got any solution …
You can make direct calls to dynamo from the client with the aws-sdk + cognito
I found https://www.serverless.com/plugins/serverless-apigateway-service-proxy which is what I was looking for