Home > other >  AWS S3 Download Pricing
AWS S3 Download Pricing

Time:06-28

I'm currently using AWS S3 and S3 glacier storage service through HyperBackup and Glacier Backup in NAS.

While using, I've got a few questions related to the pricing. When downloading the files in the storage, which price will be applied? Would that be "Get object (request)" or "Data Transfer"?

I've read this documentation about AWS (Downloading an object: https://docs.aws.amazon.com/AmazonS3/latest/userguide/download-objects.html). According to document, it seems like I can download objects through GET request, but it also says data transfer fees will be applied. I'm quite confused in this part since request and data transfer have quite different pricing range.

Please advise. Thank you.

CodePudding user response:

Data Transfer will apply for any data that moves from the AWS Cloud to the Internet, regardless of whether it comes from S3, Glacier, EC2, etc.

The service-specific pricing will also apply for the functionality you are using.

Please note that there is a difference between the 'old' Amazon Glacier (which uses Vaults) and the 'Glacier' storage classes used in Amazon S3 (which uses standard S3 but stores the data differently and at a different price).

  • Related