-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathget.js
More file actions
25 lines (23 loc) · 749 Bytes
/
get.js
File metadata and controls
25 lines (23 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import * as dynamoDbLib from "./libs/dynamodb-lib";
import {success, failure} from "./libs/response-lib";
export async function main(event, context, callback){
const params = {
TableName: "notes",
Key: {
userId: event.requestContext.identity.cognitoIdentityId,
noteId: event.pathParameters.id
}
};
try{
const result = await dynamoDbLib.call("get", params);
if (result.Item){
// return the retrieved item
callback(null, success(result.Item));
} else {
callback(null, failure({status: false, error: "Item not found"}));
}
} catch (e){
console.log(e);
callback(null, failure({status: false}));
}
}