Home > Enterprise >  What is the billing for an aws s3 sync operation which makes no changes?
What is the billing for an aws s3 sync operation which makes no changes?

Time:02-15

I have an aws s3 bucket with 10,000 files totally around 1GB in size.

I call:

aws s3 sync <remote bucket> <local folder> --exact-timestamps

And no files are found to be changed, so no actual file downloads take place.

However, there must be data exchange for the sync - does anyone know how much?

CodePudding user response:

The ListObjects() API call returns a maximum of 1000 objects.

Therefore, the AWS CLI would require at least 10 API calls to retrieve information about 10,000 objects to determine whether files need to by sync'd.

However, since the cost of requests is only $0.005 per 1,000 requests, the cost would be quite small.

  • Related