Reputation: 6240
I want to use dynamodb SDK for nodejs. Which SDK is it, may someone please send a link to the current api? I thought this link showed the most current:
http://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/DynamoDB.html
But according to
https://github.com/aws/aws-sdk-js/blob/master/UPGRADING.md
Anything using the .Client attributes are old. I am confused which is the most current. For example should I use dynamodb.get or dynamodb.getItem to get items?
Upvotes: 3
Views: 380
Reputation: 1138
As per the github, you should be using below link for DynamoDB -
http://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/DynamoDB/DocumentClient.html
There is a tutorial as well to get started with the new dynamoDB SDK -
Upvotes: 2