Practical

1. Run a serverless “Hello World”

Goto lambda -> in filter type “hello-world-python” -> create ->
name (You can name your lambda function here. For this
tutorial, enter hello-world-python) -> Description (You can enter
a short description of your function here. This is pre-populated
with A starter AWS Lambda Function.) -> Runtime (Currently,
you can author your Lambda function code in Java, Node.js, or
Python 2.7. For this tutorial, leave this on Python 2.7 as the
runtime.) -> Lambda function code (you can review the example
code authored in Python.) -> Handler (is a method/function in
your code, where AWS Lambda can begin executing your code.)

Last updated