A Python library to manage S3 lifecycle policies.
Project description
s3-lifecycle-delta
A small Python library to compute and apply deltas on AWS S3 lifecycle policies—especially focused on safe, declarative storage class transitions—with dry-run, validation, and minimal disruption.
Problem
AWS S3 lifecycle policies are typically applied by overwriting the entire configuration. That makes automated changes brittle, error-prone, and risky when you only want to tweak transitions (e.g., change from STANDARD → GLACIER after 90 days) without accidentally deleting other rules.
This library:
- Introspects the current lifecycle policy
- Compares it to the desired policy (the "delta")
- Shows what would change (dry-run)
- Validates rules
- Applies only the intended change safely
Features
- Declarative lifecycle policy definitions (via Python / JSON)
- Diff engine: detects rule adds / updates / deletes
- Safe apply with
dry-run - Validation of transition semantics (e.g., non-decreasing days)
- Idempotent behavior
- Pluggable for custom validation or rule logic
Quickstart
1. Set Up AWS Environment
Before using s3-lifecycle-delta, configure AWS credentials.
a) Using AWS CLI
aws configure
Provide:
AWS Access Key ID [None]: <YOUR_ACCESS_KEY>
AWS Secret Access Key [None]: <YOUR_SECRET_KEY>
Default region name [None]: <YOUR_DEFAULT_REGION> # e.g., us-east-1
Default output format [None]: json
b) Using environment variables
Linux/macOS:
export AWS_ACCESS_KEY_ID=<YOUR_ACCESS_KEY>
export AWS_SECRET_ACCESS_KEY=<YOUR_SECRET_KEY>
export AWS_DEFAULT_REGION=us-east-1
Windows (PowerShell):
setx AWS_ACCESS_KEY_ID "<YOUR_ACCESS_KEY>"
setx AWS_SECRET_ACCESS_KEY "<YOUR_SECRET_KEY>"
setx AWS_DEFAULT_REGION "us-east-1"
⚠️ Ensure your IAM user has
s3:GetLifecycleConfigurationands3:PutLifecycleConfigurationpermissions.
2. Install the Library
git clone https://github.com/FernandoOLI/s3-lifecycle-delta.git
cd s3-lifecycle-delta
pip install -e .
3. Basic Usage
from s3_lifecycle import S3LifecycleManager
manager = S3LifecycleManager(bucket_name="my-bucket")
desired_policy = {
"Rules": [
{
"ID": "archive-log",
"Filter": {"Prefix": "logs/"},
"Status": "Enabled",
"Transitions": [{"Days": 300, "StorageClass": "GLACIER"},
{"Days": 390, "StorageClass": "DEEP_ARCHIVE"}
],
"Expiration": {'Days': 500},
"NoncurrentVersionTransitions": [
{"NoncurrentDays": 30, "StorageClass": "GLACIER"},
{"NoncurrentDays": 150, "StorageClass": "DEEP_ARCHIVE"}
],
"NoncurrentVersionExpiration": {'NoncurrentDays': 700}
},
{
"ID": "transition-to-glacier-and-deep",
"Filter": {"Prefix": "data/"},
"Status": "Enabled",
"Transitions": [
{"Days": 120, "StorageClass": "GLACIER"},
{"Days": 300, "StorageClass": "DEEP_ARCHIVE"}
],
"NoncurrentVersionTransitions": [
{"Days": 120, "StorageClass": "GLACIER"},
{"Days": 300, "StorageClass": "DEEP_ARCHIVE"}
]
}
]
}
# Compute delta and preview changes
delta = manager.compute(desired_policy)
manager.show_changes(delta) # Dry-run preview
# Apply changes safely
manager.apply(delta, dry_run=True) # Set dry_run=False to apply
4. Notes
dry_run=Trueonly prints changes; no modifications are applied.- Always validate IAM permissions before running
apply. - Supports declarative JSON/Python policy definitions for safe incremental updates.
Contributing
- Fork the repository
- Create a feature branch (
git checkout -b feature/my-feature) - Make your changes
- Run tests and ensure coverage
- Submit a Pull Request
License
MIT License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file s3_lifecycle-0.1.1.tar.gz.
File metadata
- Download URL: s3_lifecycle-0.1.1.tar.gz
- Upload date:
- Size: 51.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
800248922253fc4bada3845bb0899cec24d16311327bfa548280d6ada96500dd
|
|
| MD5 |
722ab2f9ee84eba867444cb2dd1c35df
|
|
| BLAKE2b-256 |
0944b94df5b541d51b356e39f72bd4cff69b27c82cbf6babee00e57093ff3e79
|
File details
Details for the file s3_lifecycle-0.1.1-py3-none-any.whl.
File metadata
- Download URL: s3_lifecycle-0.1.1-py3-none-any.whl
- Upload date:
- Size: 90.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b31ce6b8c891ac7bc91d3adca0780d1ad56b13afbf728ed3c171ed1f6d2d33d
|
|
| MD5 |
4ec475902c101c1b23b7b38f271921c7
|
|
| BLAKE2b-256 |
afcfc1685797ad9403484020073e8df3d5cb5b88b1cbbcce3a07d0b0a87d80cb
|