
Cloud
Learning Level
# Enable versioning
aws s3api put-bucket-versioning \
--bucket source-bucket \
--versioning-configuration Status=Enabled
# Create replication rule
aws s3api put-bucket-replication \
--bucket source-bucket \
--replication-configuration file://replication.json{
"Rules": [
{
"Id": "Archive after 30 days",
"Status": "Enabled",
"Transitions": [{
"Days": 30,
"StorageClass": "GLACIER"
}],
"Expiration": {"Days": 365}
}
]
}# Enable access logging
aws s3api put-bucket-logging \
--bucket my-bucket \
--bucket-logging-status file://logging.json
# Monitor with CloudWatch
aws s3api get-bucket-metrics-configuration \
--bucket my-bucket \
--id EntireBucketLearn about RDS optimization and replication.
Resources
Ojasa Mirai
Master AI-powered development skills through structured learning, real projects, and verified credentials. Whether you're upskilling your team or launching your career, we deliver the skills companies actually need.
Learn Deep • Build Real • Verify Skills • Launch Forward