Reputation: 1
when an S3 file is added to a bucket including some tags createObject event is triggered. What about s3:ObjectTagging:Put , is also triggered ?
I am thinking of implementing some workflow bases on tags handling and want to track file from beginning with same EventBridge rule.
Upvotes: 0
Views: 343
Reputation: 12269
No, s3:ObjectTagging:Put
is not triggered when you create an object with tags.
The
s3:ObjectTagging:Put
event type notifies you when a tag is PUT on an object or an existing tag is updated.
Upvotes: 0