in src/com/amazonaws/lab/FHIRDataHandler.java [82:95]
public String putS3ObjectContentAsString(String bucketName, String key, String content) {
try {
s3Client.putObject(bucketName, key, content);
} catch (AmazonServiceException e) {
// The call was transmitted successfully, but Amazon S3 couldn't process
// it, so it returned an error response.
e.printStackTrace();
} catch (SdkClientException e) {
// Amazon S3 couldn't be contacted for a response, or the client
// couldn't parse the response from Amazon S3.
e.printStackTrace();
}
return "Done";
}