How to invoke lambda async with AWS ApiGateway HttpApi
问题 I'm using the new HTTP Api (The one introduced in December 2019) of AWS Api Gateway. I used to work with REST Api, which lets you trigger lambda functions async by adding X-Amz-Invocation-Type:Event header. The new HTTP Api does not let you specify that header, how can I call lambda functions asynchronously? thanks in advance 回答1: You can invoke a Lambda function asynchronously via API Gateway only if the integration is non-proxy. By default, HTTP APIs are designed to support only proxy