Reputation: 19257
Older posts with similar title do not answer the question based on the current (March 2021) AWS API Gateway console.
The AWS docs say "In Integration Request, add an X-Amz-Invocation-Type header with a static value of 'Event'."
But on the API Gateway console after a full hour of looking under rocks I do not see "Integration Request" anywhere?
Upvotes: 1
Views: 96
Reputation: 238995
You can't find "Integration Request"
, because this is property of only REST API, not HTTP API.
Specifically, if you want to manage headers for lambda invocations, you have to use Lambda custom integration, not the more commonly used proxy integration.
Upvotes: 1