I have a POST method in which will be used to add comments to my RDS using Lambda. i am trying to connect it all up using the AWS API, however can't figure out how to do so.
How can I read the body of my HTTP request (specifically the comment variable) into my lambda function.
{"body" : $input.json('$')}
Will that take the whole POST body and make it available in the Lambda function?