-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.js
24 lines (20 loc) · 827 Bytes
/
list.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import handler from "./libs/handler-lib";
//import dynamoDb from "./libs/dynamodb-lib";
export const main = handler(async (event, context) => {
/*const params = {
TableName: process.env.tableName,
// 'KeyConditionExpression' defines the condition for the query
// - 'userId = :userId': only return items with matching 'userId'
// partition key
KeyConditionExpression: "userId = :userId",
// 'ExpressionAttributeValues' defines the value in the condition
// - ':userId': defines 'userId' to be the id of the author
ExpressionAttributeValues: {
":userId": "USER-SUB-1234",
},
};
const result = await dynamoDb.query(params);*/
let cognitoIdentity = event.requestContext.authorizer.claims;
// Return the matching list of items in response body
return cognitoIdentity;
});