Skip to content

Instantly share code, notes, and snippets.

@erfanium
Last active April 13, 2021 13:19
S3 expire all objects in bucket after X days
<LifecycleConfiguration>
<Rule>
<ID>expire</ID>
<Filter>
<Prefix></Prefix>
</Filter>
<Status>Enabled</Status>
<Expiration>
<Days>X</Days>
</Expiration>
</Rule>
</LifecycleConfiguration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment