Facing issue: scan dynamo DB
问题 I've created apis in nodejs to scan and query dynamoDB table(contains 70K records). I'm stuck with scan api. I've two APIs for scan - 1. Scanning table with limit of 500 - getting proper response 2. Scanning table without any limit - response code 403 And if I'm calling the same query without any limit through cli, getting full response. Not getting what's the problem. api.get('/deviceData', function (request) { // GET all users return dynamoDb.scan({ TableName: 'student', Limit: 500 })