So I have followed this gudie from another stack question:
The steps to get this working are:
- go to Resources -> Integration Request
- click on the plus or edit icon next to templates dropdown (odd I know since the template field is already open and the button here looks greyed out)
- Explicitly type application/json in the content-type field even though it shows a default (if you don't do this it will not save and will not give you an error message)
- Put this in the input mapping { "name": "$input.params('name')" }
- click on the check box next to the templates dropdown (I'm assuming this is what finally saves it)
I understand this however I don't understand how I can then use this parameter within my lambda function (Python)
I have tried input.name with no success.