Skip to content

Instantly share code, notes, and snippets.

@daveliepmann
Created September 1, 2015 13:24
Show Gist options
  • Save daveliepmann/6076d60e1335a04e1136 to your computer and use it in GitHub Desktop.
Save daveliepmann/6076d60e1335a04e1136 to your computer and use it in GitHub Desktop.
Tim Wagner and Bryan Moffatt's AWS Lambda walkthrough for Clojure (https://aws.amazon.com/blogs/compute/clojure/) says "You can invoke and test from the command line".
aws lambda invoke \
--function-name clj-hello \
--payload \"Dave\" \
output
# or...
aws lambda invoke --function-name clj-hello --payload \"Dave\" output
# either way, the response from your function goes in the file "output"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment