-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlist.js
More file actions
22 lines (19 loc) · 812 Bytes
/
list.js
File metadata and controls
22 lines (19 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import * as dynamoDbLib from './libs/dynamodb-lib';
import { success, failure } from './libs/response-lib';
export async function main(event, context, callback) {
const params = {
TableName: 'devs',
// 'KeyConditionExpression' defines the condition for the query
// - 'userId = :userId': only return items with matching 'userId' partition key
// 'ExpressionAttributeValues' defines the value in the condition
// - ':userId': defines 'userId' to be User Pool sub of the authenticated user
};
try {
const result = await dynamoDbLib.call('scan', params);
// Return the matching list of items in response body
callback(null, success(result.Items));
}
catch(e) {
callback(null, failure({status: false}));
}
};