aws lambda + http api with Payload Format Version 2.0. How to correctly parse the payload with Python 3.12 runtime

0

I am developing a lambda (runtime Python 3.12) that will process events via POST requests to a API Gateway HTTP API.

According to the AWS console, the integration I have set up between the POST route on my API and my lambda function has "Payload format version 2.0 (interpreted response format).

Here is the documentation about that payload format.

That documentation gives me the (apparently wrong) impression that in the Python runtime, the "event" parameter passed to the lambda is a dict that has (among other things) an attribute 'body' that has a value that is a string.

Thus, based on that (again, apparently wrong) impression, my lambda function tries to access the data in the body of the request (which I expect to be a JSON formatted string) like this:

req_body = json.loads(event.body)

When I run a test of my function using the console, my function raises this exception:

{
  "errorMessage": "'dict' object has no attribute 'body'",
  "errorType": "AttributeError",
  "requestId": "83b129eb-cf1e-4afa-9215-a0f3c0d18cec",
  "stackTrace": [
    "  File \"/var/task/lambda_function.py\", line 33, in handler\n    req_body = json.loads(event.body)\n"
  ]
}

Here is a screenshot of the test that is leads to the raised exception: Enter image description here

What do I not correctly understand about the event object delivered to a Python 3.12 lambda function by an HTTP API using Payload format version 2.0?

Thanks.

stu
已提问 2 个月前239 查看次数
1 回答
3
已接受的回答

Hi,

You should rather do :

payload = json.loads(event)
req_body = payload.body

As a matter of fact, you need to convert event to a dict (which I called payload here) before accessing the body attribute of this dict

Best,

Didier

profile pictureAWS
专家
已回答 2 个月前
profile picture
专家
已审核 2 个月前
profile picture
专家
已审核 2 个月前
profile picture
专家
已审核 2 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则