Reputation: 2956
My understanding is that S3 is an object store, and "paths" are really just keys pointing to an object.
If I make a copy of a file in the same bucket, will I incur a cost for both copies of that object?
This seems to indicate that two objects will have different metadata, so they are different -- but AWS also considers "metadata" to be different than "data".
Upvotes: 2
Views: 1663
Reputation: 11718
Yes you are right "S3 is an object store, and 'paths' are really just keys pointing to an object." But when you create 2 paths they actually are pointing to 2 different objects (even if objects are exact replicas of each other)
So you will incur cost of storing 2 objects
Upvotes: 5