Skip to content

Instantly share code, notes, and snippets.

@TrueGeek
Created January 11, 2019 13:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TrueGeek/e813e986ed8d237b5c8ab70efd0f9a7a to your computer and use it in GitHub Desktop.
Save TrueGeek/e813e986ed8d237b5c8ab70efd0f9a7a to your computer and use it in GitHub Desktop.
AWS Lambda DynamoDB PUT
var AWS = require('aws-sdk');
var dynamodb = new AWS.DynamoDB.DocumentClient();
exports.handler = (event, context, callback) => {
dynamodb.scan({
TableName: 'ggmug'
}, (err, data) => {
if (err) {
console.log('Error putting item into dynamodb failed: ' + err);
callback('500');
}
else {
console.log('saved');
callback(null, data.Items);
}
});
console.log('done');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment