This is a script made with a collation of internet examples. The goal here is to load a DynamoDB table with records from a SQLServer table. For this example I'm using a local installation of DynamoDB. var Connection = require ( ' tedious ' ) . Connection ; var Request = require ( ' tedious ' ) . Request ; var TYPES = require ( ' tedious ' ) . TYPES ; var fs = require ( ' fs ' ) ; var AWS = require ( " aws-sdk " ) ; console . time ( " dbsave " ) ; // SQL Server configuration var config = { userName : ' username ' , password : ' password ' , server : ' serverIP ' , options : { //instanceName: 'MSSQLSERVER', -- didnt have to use this option port : 1433 , database : ' dbname ' } } // DynamoDB configuration AWS . config . update ( { region : " us-west-2 " , en...