I am hoping to access the Amazon S3 API to determine how much data has been transferred on a single S3 Object. Is this possible?
I have looked through the documentation yet can not find anything.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is not possible via the API as such, however, you should be able to calculate this yourself by facilitating Server Access Logging:
This is can be configured via the AWS Management Console as well, see Managing Bucket Logging for details.
Any decent analytics package should be able to provide respective aggregates for the generated Server Access Log Format, ideally including the transferred data already – otherwise you would need to do the math yourself from the number of requests (still inconvenient, but likely automatable one way or another).
Good luck!