Created
November 13, 2017 20:03
-
-
Save mikebroberts/a63cec4c4c8a2a4e14e41b472d8bd834 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 { | |
private static final String containerId = java.util.UUID.randomUUID().toString(); | |
public String handler(String input) { | |
return "This is function instance " + containerId; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment