Last active
November 14, 2017 22:48
-
-
Save mikebroberts/75bfba96806d1fbaf1b49e3d833a2e9b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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