(event, context)
| 1 | |
| 2 | def handler(event, context): |
| 3 | response = "Received Message Body from API GW: " + event['Records'][0]['body'] |
| 4 | print(response) |
| 5 | return { |
| 6 | 'statusCode': 200, |
| 7 | 'body': response |
| 8 | } |
nothing calls this directly
no outgoing calls
no test coverage detected