in src/main/scala/com/gu/flexible/snapshotter/logic/S3Logic.scala [17:21]
def uploadToS3Bucket(id: String, date: DateTime, content: JsValue)
(implicit s3Client: AmazonS3, config: SnapshotterConfig): Attempt[PutObjectResult] = {
val key = makeKey(id, date, extension = "json")
uploadToS3Bucket(key, content)
}