0

I saw this post:

how to add cache control in AWS S3?

It tells me how I can modify the cache control after loading in objects. But is there a way that I can give the objects loaded into my bucket default cache control TTL ?

Community
  • 1
  • 1
Alan2
  • 23,493
  • 79
  • 256
  • 450
  • possible duplicate of [Amazon S3 Cache-Control for all bucket](http://stackoverflow.com/questions/27385757/amazon-s3-cache-control-for-all-bucket) – Michael - sqlbot Dec 23 '14 at 19:57

1 Answers1

2

No, Cache Control is a per object meta data. There is no default value for it at bucket level.

http://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectPUT.html

http://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUT.html

Sébastien Stormacq
  • 14,301
  • 5
  • 41
  • 64