AWS just announced a new feature Invoking Lambda functions using Application Loadbalancers. This is great news as we don't have to configure all those mappings for API gateway just to get a simple response from my lambda function.
We have an image resizing service running on lambda via API gateway. I am wondering if we can replace API gateway with ALB. The way it works now we have to send a base64 encoded image to api gateway which in return converts it to a binary and send back to our clients.
If we were to replace API gateway with ALB how would we be serving images/binary responses what will be the needed changes we have to do to our existing infrastructure.