Skip to content

Instantly share code, notes, and snippets.

@mikebroberts
Last active November 14, 2017 22:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikebroberts/75bfba96806d1fbaf1b49e3d833a2e9b to your computer and use it in GitHub Desktop.
Save mikebroberts/75bfba96806d1fbaf1b49e3d833a2e9b to your computer and use it in GitHub Desktop.
public class MyLambda {
public void handler(S3Put input) {
// Execution code will go here
}
public static class S3Put {
public java.util.List<S3PutRecord> Records;
public static class S3PutRecord {
public S3PutRecordS3 s3;
public static class S3PutRecordS3 {
public S3PutRecordS3Object object;
public static class S3PutRecordS3Object {
public String key;
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment