Exam DVA-C02 All QuestionsBrowse all questions from this exam
Question 205

A developer is working on an application that processes operating data from IoT devices. Each IoT device uploads a data file once every hour to an Amazon S3 bucket. The developer wants to immediately process each data file when the data file is uploaded to Amazon S3.

The developer will use an AWS Lambda function to process the data files from Amazon S3. The Lambda function is configured with the S3 bucket information where the files are uploaded. The developer wants to configure the Lambda function to immediately invoke after each data file is uploaded.

Which solution will meet these requirements?

    Correct Answer: C

    The solution that meets the requirement is to add a trigger to the AWS Lambda function with the S3 bucket as the source. This ensures that the Lambda function is invoked immediately when a new file is uploaded to the specified S3 bucket. Triggers are designed to automatically react to events such as file uploads, making them the appropriate choice for this use case.

Discussion
Digo30spOption: C

The correct answer is (C). Adding a trigger to your Lambda function is the solution that will meet these requirements. A trigger is an event that can invoke a Lambda function. In the case of this issue, the trigger must be an Amazon S3 event that fires when a new file is uploaded to the bucket.

fordiscussionstwo

CCCCCCCCCCCCCC

SerialiDrOption: C

To meet the requirement of processing data files immediately after they are uploaded to an Amazon S3 bucket, the best solution is to add a trigger to the AWS Lambda function with the S3 bucket as the source. This will configure the Lambda function to be automatically invoked when a new file is uploaded to the specified S3 bucket.

dillemanOption: C

C is correct

AnandeshOption: C

https://docs.aws.amazon.com/lambda/latest/dg/with-s3-example.html

65703c1Option: C

C is the correct answer.

1dfed2bOption: B

sure that B, give me a link why everyone want C.

tsangckl

https://docs.aws.amazon.com/lambda/latest/dg/with-s3-example.html

Certified101Option: C

C using S3 Events, no need for EventBridge here.

LR2023Option: B

EventBridge can be employed to collect real-time data streams from various sources like IoT devices, mobile apps, or web applications. Lambda functions can then process this data to perform analytics, generate alerts, or update dashboards.

LR2023

You can use Amazon EventBridge to monitor an S3 bucket for new image uploads. When a new image is detected, EventBridge triggers a Lambda function that processes the image, applies filters, and generates thumbnails, all without manual intervention