Socket
Socket
Sign inDemoInstall

awssum-amazon-dynamodb

Package Overview
Dependencies
8
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    awssum-amazon-dynamodb

AwsSum plugin for Amazon DynamoDB.


Version published
Weekly downloads
2
increased by100%
Maintainers
1
Install size
210 kB
Created
Weekly downloads
 

Readme

Source

NOTE: AwsSum is now deprecated. Please use aws-sdk instead.

awssum-amazon-SERVICE

This is an AwsSum plugin!

You'll need to add awssum-amazon-dynamodb to your package.json dependencies. Both awssum and awssum-amazon are pulled in as peer dependencies.

dependencies : {
    "awssum-amazon-dynamodb" : "1.x",
},

Example

List all your tables

var fmt = require('fmt');
var amazonDynamoDB = require('awssum-amazon-dynamodb');

var dynamodb = new amazonDynamoDB.DynamoDB({
    'accessKeyId'     : process.env.ACCESS_KEY_ID,
    'secretAccessKey' : process.env.SECRET_ACCESS_KEY,
    'region'          : amazonDynamoDB.US_EAST_1
});

dynamodb.ListTables(function(err, data) {
    fmt.dump(err, 'err');
    fmt.dump(data, 'data');
});

Operations

  • BatchGetItem
  • BatchWriteItem
  • CreateTable
  • DeleteItem
  • DeleteTable
  • DescribeTable
  • GetItem
  • ListTables
  • PutItem
  • Query
  • Scan
  • UpdateItem
  • UpdateTable

Author

Written by Andrew Chilton - Blog - Twitter.

License

(Ends)

Keywords

FAQs

Last updated on 11 Jun 2014

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc