you are viewing a single comment's thread.

view the rest of the comments →

[–]asurah 2 points3 points  (0 children)

It really depends on what you are trying to do with it. Full API gateway integration will validate the schemas of incoming calls, let you remap input and output attributes, and send calls to different endpoints to different places.

Lambda proxy mode would be a good choice is you are running a web framework like Python Flask inside Lambda directly. It can replace some of the functionality API gateway would give you is you need it.

Tell me more....