Last active
May 22, 2021 16:34
-
-
Save fnoquiq/cc3929c04355120c324da007136c86c9 to your computer and use it in GitHub Desktop.
Dynamodb Scan Example
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
var params = { | |
TableName: 'users_certificates' | |
}; | |
dynamodb.scan(params, onScan); | |
function onScan(err, data) { | |
if (err) { | |
console.error(err); | |
}else { | |
console.log(data); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment