Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AWS S3 object lifecycle through Boto

How does one manage an S3 object's lifecycle through boto?

I can't find anything related to that subject in the API documentation.

like image 207
jldupont Avatar asked Nov 13 '22 11:11

jldupont


1 Answers

The S3 lifecycle API is barely a month old and the code wasn't even added to boto until after you posted this question. The code is there now though and if you grab it, you can run pydoc on the code and look at the documentation:

% git clone https://github.com/boto/boto.git
% cd boto/boto
% pydoc -w ./
% open s3.lifecycle.html
like image 113
Nathan Binkert Avatar answered Dec 19 '22 08:12

Nathan Binkert