The existing ice-rink mobile API is already AWS Lambda. The new no-show model lives on a SageMaker endpoint. Lambda should validate the payload and call the endpoint rather than exposing the endpoint to the phone app. How should Lambda be used?
Select an answer to reveal the explanation.
Short Explanation
The mobile API is already Lambda, and the no-show model lives on a SageMaker endpoint. Put Lambda in front to validate and invoke. Do not expose the endpoint to the phone, and do not move the model into Lambda.
Full Explanation
Use AWS Lambda with the SageMaker endpoint as a light front (validate and invoke). Lambda is not a replacement for the model host in this stem. Exposing the endpoint to the phone app and Translate miss that pattern.