Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam AWS Certified Data Engineer - Associate DEA-C01 All Questions

View all questions & answers for the AWS Certified Data Engineer - Associate DEA-C01 exam

Exam AWS Certified Data Engineer - Associate DEA-C01 topic 1 question 33 discussion

A company has a frontend ReactJS website that uses Amazon API Gateway to invoke REST APIs. The APIs perform the functionality of the website. A data engineer needs to write a Python script that can be occasionally invoked through API Gateway. The code must return results to API Gateway.
Which solution will meet these requirements with the LEAST operational overhead?

  • A. Deploy a custom Python script on an Amazon Elastic Container Service (Amazon ECS) cluster.
  • B. Create an AWS Lambda Python function with provisioned concurrency.
  • C. Deploy a custom Python script that can integrate with API Gateway on Amazon Elastic Kubernetes Service (Amazon EKS).
  • D. Create an AWS Lambda function. Ensure that the function is warm by scheduling an Amazon EventBridge rule to invoke the Lambda function every 5 minutes by using mock events.
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
royalrum
1 week, 5 days ago
I AM THINKING B. Dont u think provisionning concurrency add additional cost even when the function is not in active use, which is unnecessary for an occasionally invoked function.
upvoted 1 times
...
pypelyncar
5 months, 1 week ago
Selected Answer: B
B and D are both ok. Still, since it says LEAST operational overhead, then keep it simple. B then.
upvoted 3 times
...
HunkyBunky
6 months, 2 weeks ago
Selected Answer: B
B - simple and clear
upvoted 2 times
...
lucas_rfsb
7 months, 2 weeks ago
Selected Answer: B
I would go in B
upvoted 1 times
...
GiorgioGss
8 months, 1 week ago
Selected Answer: B
Although D seems a good choice but the questions asks for "LEAST operational overhead" will result in B
upvoted 1 times
...
damaldon
8 months, 2 weeks ago
Answ. B You can create a web API with an HTTP endpoint for your Lambda function by using Amazon API Gateway. API Gateway provides tools for creating and documenting web APIs that route HTTP requests to Lambda functions. You can secure access to your API with authentication and authorization controls. Your APIs can serve traffic over the internet or can be accessible only within your VPC. https://docs.aws.amazon.com/lambda/latest/dg/services-apigateway.html
upvoted 1 times
...
rralucard_
9 months, 2 weeks ago
Selected Answer: B
B. AWS Lambda functions can be easily integrated with Amazon API Gateway to create RESTful APIs. This integration allows API Gateway to directly invoke the Lambda function when the API endpoint is hit.
upvoted 2 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...