What's the equivalent of `req.rawBody` in serverless?

I’d like to get the raw body of a post request. I’ve seen a bunch of solutions involving some configurations on AWS API Gateway. But is there a way to get it by configuring something on serverless.yml or on the event handler?

Its pretty simple. event.body contains the raw body. Nothing complicated.