
Ultimate access to all questions.
An AWS Lambda is used to create avatars from images uploaded to an Amazon S3 bucket under the /original/ prefix. To handle timeouts for large images, a fallback Lambda for resizing is needed with minimal development effort. What is the most efficient setup?
A
Use Lambda destinations to route failed events to the image resize Lambda.
B
Utilize Amazon SQS with on failure conditions to trigger the image resize Lambda.
C
Implement AWS Step Functions with a state machine for invoking the avatar generator and the image resize Lambda as a fallback, triggered by an Amazon EventBridge rule.
D
Employ Amazon SNS for on failure notifications to the image resize Lambda.