Python

And AWS Lambda

Scott Ernst

November 2015

AWS Lambda

Event-Driven Computing Service

Create A Function

def handler(event, context):
    print('Hello {}'.format(event['name'])
"event"

Event-specific parameter(s)

"context"

Run-time related information

1

2

Upload It To The Cloud

def handler(event, context):
    print('Hello {}'.format(event['name'])

Configure It For Events

Use Case: Serverless Backend

Example

/sernst/HelloLambda

Python & AWS Lambda

By sernst

Python & AWS Lambda

An introduction to running python on AWS Lambda.

  • 646