exports.get_anon_embed_url = function(req, res, next) {
// Generate the embed url
return quicksightEmbedGenPromise(req, res, next).then(embed_url => {
// Send the embed url to the requestor, in our case the SaaSBox dashboard.
return res.send(embed_url)
return res.send({ error: "Could not create embed url"})
}).catch(err => { console.log("Error:", err); res.send({ error: err })});