Skip to content

Instantly share code, notes, and snippets.

@fnoquiq
Last active May 22, 2021 16:34
Show Gist options
  • Save fnoquiq/cc3929c04355120c324da007136c86c9 to your computer and use it in GitHub Desktop.
Save fnoquiq/cc3929c04355120c324da007136c86c9 to your computer and use it in GitHub Desktop.
Dynamodb Scan Example
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