Last active
October 23, 2015 17:46
-
-
Save xtianus79/25d7bdb55fa73ec3765b 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
if (action === 'aws_qa') { | |
var params = {}; | |
params.RequestItems = {}; | |
params['RequestItems'][variable_here] = | |
[ // a list of Put or Delete requests for that table | |
{ // An example DeleteRequest | |
DeleteRequest: { | |
Key: { // a map of attribute name to AttributeValue | |
ScId: {'S': '...'}, | |
Id: {'S': '...'}, // optional if table is hash-only | |
// attribute_value (string | number | boolean | null | Uint8Array | dynamodb.Set | Array | Object) | |
// ... more attributes ... | |
} | |
} | |
} | |
] | |
console.log(params[0] + ' this is the log of params 2222'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment