Environment
I copied a file,
./barname.bin
, to s3, using the commandaws s3 cp ./barname.bin s3://fooname/barname.bin
I have a different file,
./barname.1.bin
that I want to upload in place of that file
How can I upload and replace (overwrite) the file at s3://fooname/barname.bin
with ./barname.1.bin
?
Goals:
- Don't change the s3 url used to access the file (new file should also be available at
s3://fooname/barname.bin
). - zero/minimum 'downtime'/unavailability of the s3 link.