Created
May 2, 2019 18:15
-
-
Save robzhu/1968dd06a500e0e9454f888f6eeccce5 to your computer and use it in GitHub Desktop.
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
import * as AWS from "aws-sdk"; | |
const DynamoDB = new AWS.DynamoDB.DocumentClient(); | |
DynamoDB.put({ | |
TableName, | |
Item: { | |
id: "1234", | |
name: "carl", | |
friends: DynamoDB.createSet(["meatwad", "frylock", "shake"]) | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment