-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdemo.py
34 lines (24 loc) · 976 Bytes
/
demo.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
"""
Amazon-provided demo.
"""
import os
import os.path
def lambda_handler(event, context): # pylint: disable=unused-argument
"""Sample pure Lambda function
Parameters
----------
event: dict, required
API Gateway Lambda Proxy Input Format
Event doc: https://docs.aws.amazon.com/apigateway/latest/developerguide/set-up-lambda-proxy-integrations.html#api-gateway-simple-proxy-for-lambda-input-format
context: object, required
Lambda Context runtime methods and attributes
Context doc: https://docs.aws.amazon.com/lambda/latest/dg/python-context-object.html
Returns
------
API Gateway Lambda Proxy Output Format: dict
Return doc: https://docs.aws.amazon.com/apigateway/latest/developerguide/set-up-lambda-proxy-integrations.html
"""
return {
"statusCode": 200,
"body": os.getcwd() + ":\n\n" + "\n".join(os.listdir(".")) + "\n\n\napp:\n" + "\n".join(os.listdir("app"))
}