-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
task3.2: create lambda function for product item #14
Conversation
✔️ Create a lambda function called `getProductsById` in Product Service which will be triggered by the HTTP GET method. ✔️ The requested URL should be `/products/{productId}` ✔️ The response from the lambda should be 1 searched product from an array of products (mock data should be used). Extra effort: * This endpoint is integrated with Frontend app. New route and components set is created * Business logic moved from handler code to a service class
Build output Deploying to stage task3-2 |
✔️ Create a lambda function called
getProductsById
in Product Service which will be triggered by the HTTP GET method.✔️ The requested URL should be
/products/{productId}
✔️ The response from the lambda should be 1 searched product from an array of products (mock data should be used).
Extra effort: