AWS Lambda Java, write to S3 bucket

Question:

I am creating an AWS Lambda function that is runned monthly. Each month process some data and write that back to S3 Bucket.

Do you know how you can you write a file from AWS Lambda Java to a S3 bucket?

Answer:

The same way you can write a file to S3 from any Java application. Use the AWS SDK for Java.

Leave a Reply