Home > other >  How much does it cost to copy files/folders with the same s3 bucket?
How much does it cost to copy files/folders with the same s3 bucket?

Time:06-29

I have been searching this but only find relevant answers for copy between different buckets. I checked AWS official page for replication charge while it only mentions cross-region and same-region replication, which should be related to inter-bucket replication. Is there any additional charge other than storage for duplicating files/folders within the same bucket?

CodePudding user response:

Apart from storage costs, there is also a cost associated with requests to S3 bucket. In your case, it will be copy request charges. Please see the detailed pricing categories at https://aws.amazon.com/s3/pricing/

CodePudding user response:

According to the Amazon S3 pricing page:

PUT, COPY, POST, LIST requests: $0.005 per 1,000 requests
  • Related