The current implementation covers the equivalent of `awslambda.streamifyResponse`. • To implement the equivalent of `awslambda.HttpResponseStream`.from, you need: ◦ Set Content-Type to `application/vnd.awslambda.http-integration-response`. ◦ Send custom headers (status code, headers, cookies) in JSON. ◦ Add 8 NULL characters as separators. ◦ Encode the response using HTTP/1.1 chunked transfer. • Ref:https://aws.amazon.com/jp/blogs/compute/using-response-streaming -with-aws-lambda-web-adapter-to-optimize-performance/ 27