Skip to content

Instantly share code, notes, and snippets.

@mikebroberts
Created November 13, 2017 20:03
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/a63cec4c4c8a2a4e14e41b472d8bd834 to your computer and use it in GitHub Desktop.
Save mikebroberts/a63cec4c4c8a2a4e14e41b472d8bd834 to your computer and use it in GitHub Desktop.
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