-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathget.js
29 lines (27 loc) · 932 Bytes
/
get.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
25
26
27
28
29
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',
// 'Key' defines the partition key and sort key of the time to be retrieved
// - 'userId': federated identity ID of the authenticated user
// - 'noteId': path parameter
Key: {
userId: event.requestContext.authorizer.claims.sub,
devId: 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) {
callback(null, failure({status: false}));
}
};