in Abuse.ch/src/R53AbuseAutoUpdate.js [38:49]
async function deleteFromS3(){
var params = {
Bucket: "r53-t1-s3bucket-1kxu9zmfu28em",
Key: "autoupdating-dnsfirewall-domains.txt"
};
let res = await s3.deleteObject(params, function(err, data){
if (err) console.log(err, err.stack); // an error occurred
}).promise();
if (res) {
console.log("Deleted the import file");
}
}