Last active
May 21, 2022 18:38
-
-
Save martimatix/06481e1321ab99bf4a501705235b261f to your computer and use it in GitHub Desktop.
Writing data to Dynamodb from Serverless
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const doc = require('dynamodb-doc'); | |
const dynamo = new doc.DynamoDB(); | |
const Q = require('kew'); | |
module.exports.handler = (event, context, callback) => { | |
function putItem() { | |
const defer = Q.defer(); | |
const query = event.queryStringParameters; | |
const params = { | |
TableName: 'test', | |
Item: { | |
customerId: query.customerId, | |
durationInHours: parseInt(query.durationInHours), | |
} | |
}; | |
dynamo.putItem(params, defer.makeNodeResolver()); | |
return defer.promise; | |
} | |
function response(data, statusCode) { | |
const response = { | |
statusCode: statusCode, | |
body: JSON.stringify({ | |
data: data, | |
input: event, | |
}), | |
}; | |
callback(null, response); | |
} | |
putItem() | |
.then(data => response(data, 200)) | |
.fail(err => response(err, 500)); | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
customerId=abc&durationInHours=447 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
service: aws-nodejs | |
provider: | |
name: aws | |
runtime: nodejs4.3 | |
stage: dev | |
region: ap-southeast-2 | |
iamRoleStatements: | |
- Effect: "Allow" | |
Action: | |
- dynamodb:GetItem | |
- dynamodb:BatchGetItem | |
- dynamodb:Query | |
- dynamodb:PutItem | |
- dynamodb:UpdateItem | |
- dynamodb:DeleteItem | |
- dynamodb:BatchWriteItem | |
Resource: "arn:aws:dynamodb:ap-southeast-2:*:*" | |
functions: | |
hello: | |
handler: index.handler | |
events: | |
- http: | |
path: index | |
method: post |
im struggling greatly with this. is there any chance you are available for some help????? thanks! twitter or here. my twitter handle is fullstack_dev88
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I was struggling with getting writes to Dynamodb to work through API gateway even though it was working fine through the Lambda console. The reason, it seems, was that the
callback
function was not being called and the parent function finished before thecallback
executed.My solution here is to use promises as this ensures that the
callback
function is executed.Still not sure if this pattern is the best way to go but putting this out there in case this is of any help to someone.