jldupont
jldupont

Reputation: 96844

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.

Upvotes: 5

Views: 630

Answers (1)

Nathan Binkert
Nathan Binkert

Reputation: 9134

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

Upvotes: 1

Related Questions