Topic 1 Question 377
2 つ選択A company launched an online portal to announce a new product that the company will release in 6 months. The portal requests that users enter an email address to receive communications about the product. The company needs to create a REST API that will store the email addresses in Amazon DynamoDB.
A developer has created an AWS Lambda function that can store the email addresses. The developer will deploy the Lambda function by using the AWS Serverless Application Model (AWS SAM). The developer must provide access to the Lambda function over HTTP.
Which solutions will meet these requirements with the LEAST additional configuration?
Expose the Lambda function by using function URLs.
Expose the Lambda function by using a Gateway Load Balancer.
Expose the Lambda function by using a Network Load Balancer.
Expose the Lambda function by using AWS Global Accelerator.
Expose the Lambda function by using Amazon API Gateway.
ユーザの投票
コメント(2)
- 正解だと思う選択肢: AE
function urls and apigw
👍 4rdiaz2024/07/11 - 正解だと思う選択肢: AE
Lambda Function URLs and Amazon API Gateway provide direct HTTP/HTTPS access to serverless functions (AWS Lambda) and automatically handle routing, scaling, and performance optimization without the need for a load balancer.
API Gateway already acts as a front door for your API, handling incoming HTTP requests and forwarding them to the appropriate Lambda function (or other backend services), so there’s no need for a Gateway Load Balancer.
Lambda Function URLs similarly provide a direct way to invoke a Lambda function over HTTP without requiring a load balancer.
👍 2preachr2024/10/05
シャッフルモード