Spaces:
Configuration error

File size: 1,193 Bytes
0c9beb9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
35
36
37
38
39
40
41
42
43
import json

# import requests


def lambda_handler(event, context):
    """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

    """

    # try:
    #     ip = requests.get("http://checkip.amazonaws.com/")
    # except requests.RequestException as e:
    #     # Send some context about this error to Lambda Logs
    #     print(e)

    #     raise e

    return {
        "statusCode": 200,
        "body": json.dumps({
            "message": "hello world",
            # "location": ip.text.replace("\n", "")
        }),
    }