I've uploaded a bunch of images to Amazon S3, and now want to add a Cache-Control header to them.
Can the header be updated without downloading the entire image? If so, how?
|
I've uploaded a bunch of images to Amazon S3, and now want to add a Cache-Control header to them. Can the header be updated without downloading the entire image? If so, how? |
||||
|
|
It's beta functionality, but you can specify new meta data when you copy an object. Specify the same source and destination for the copy, and this has the effect of just updating the meta data on your object.
|
|||||
|
|
This is out of beta and is available by doing a put command and copying the object as documented here. It is also available in their SDK's. For example with C#:
|
|||
|
|
|
with the amazon aws-sdk, Doing a copy_object with extra headers seems to do the trick for setting caching control headers for an existing S3 Object. =====================x===============================================
=======================x================================================ |
|||
|
|
|
This is how you do it in AWS SDK for PHP 2:
|
|||
|
|