HelloLambda
Demonstrates project structure for running arbitrary Java code on AWS' lambda service.
Building
This project uses maven to produce a shaded jar.
$ mvn clean install
$ ls target/lambda-1.0-SNAPSHOT.jar
$ java -jar target/lambda-1.0-SNAPSHOT.jar
Deploying
Some screenshots to help you deploy on AWS' lambda service.
Configure a New Lambda
Configure Test Event
Define the JSON payload that you'll use to test the lambda each time you upload a new version.
Test It
Schedule It
You can schedule lambda execution via a special input event.
Define Scheduled Event Content
Our scheduled event doesn't have a payload yet. Let's fix that.