How can I know if a object is a replicated object from the S3 event notification event?

0

I have s3 replication enabled and event notification enabled for both source and destination buckets. How can I know in the destination bucket from the notification event if the object is a replicated object without any custom lambda logic

AWS
asked 5 months ago215 views
1 Answer
0

Hello.

If it is an event notification, it will be notified by the "ObjectCreated:Put" event, so I don't think it can be determined.
Therefore, I think it is difficult to judge without using Lambda.
https://repost.aws/ja/questions/QUWy4DeorXSkOOm5otiBZPyg/does-s3-object-replication-trigger-objectcreated-event

So, how about triggering Lambda to determine if the same object exists in the source S3 bucket when "ObjectCreated:Put" occurs?
If it is determined that the same object exists, I think it is a replicated object.

profile picture
EXPERT
answered 5 months ago
  • I am looking for a way without having to trigger a lambda function, I think it is not possible. Thanks for confirming.

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions