Question 77:
A software team builds up a feature that needs a new RESTful endpoint that returns greetings to customers. The endpoint contains several path variables and query string parameters. This HTTP endpoint is supposed to be hit millions of times per month. However, the hit rate may change dramatically. The team decides to use API gateway/lambda to save some cost. The team needs to deploy the feature quickly. However, the team members have little experience with lambda. Which below options CAN NOT help the team? Select 2.
Answer options:
A.In the Lambda console, choose a blueprint such as “microservice-http-endpoint” to create a lambda-microservice under the selected API. B.Build an API gateway with a proxy resource for a Lambda function. This can be done by selecting the “Configure as proxy resource” option when creating an API resource. C.Use the API Gateway console to build an API that enables a client to call Lambda functions through the Lambda custom integration. Lambda custom integration is very simple to use, and the user has little else to do except choosing a particular Lambda function in a given region. D.Implement a lambda authorizer for the API gateway to grant permissions. A Lambda authorizer uses bearer token authentication strategies, such as OAuth or SAML, which secures access to the API gateway and back-end lambda.