Question 186:
You need to set up a RESTful API service in AWS that would be serviced via the following URL- https://democompany.com/customers?ID=1 So customers should be able to get their details whilst providing the ID to the API. Which of the following would you define to fulfill this requirement? Choose 2 answers from the options given below.
Answer options:
A.A Lambda function and expose the Lambda function to the customers. Pass the ID as a parameter to the function. B.An API gateway with a Lambda function to process the customer information. C.Expose the GET method in the API Gateway. D.Expose the GET method in the Lambda function.