in src/main/scala/housekeeper/Lambda.scala [62:65]
def handler(lambdaInput: SNSEvent, context: Context): Unit = {
val rawBounceNotifications = lambdaInput.getRecords.asScala.map(_.getSNS.getMessage).toSeq
Await.ready(Future.traverse(rawBounceNotifications)(go), 30 seconds)
}