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

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

link|improve this question

can you be a bit more specific about what you mean by "lifecycle". Do you want to manage how long an object will live until its deleted? Do you just want to know how to delete something with boto? etc.. etc.. – caius howcroft Jan 25 at 15:43
feedback

1 Answer

up vote 1 down vote accepted

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
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.