_CORE
AI & Agentic Systems Core Information Systems Cloud & Platform Engineering Data Platform & Integration Security & Compliance QA, Testing & Observability IoT, Automation & Robotics Mobile & Digital Banking & Finance Insurance Public Administration Defense & Security Healthcare Energy & Utilities Telco & Media Manufacturing Logistics & E-commerce Retail & Loyalty
References Technologies Blog Know-how Tools
About Collaboration Careers
CS EN
Let's talk

AWS S3 — Pokročilé funkce

25. 11. 2023 1 min read intermediate

Cloud Intermediate

AWS S3 — Pokročilé funkce

AWSS3StorageLifecycle 5 min read

S3 lifecycle policies, replication, event notifications, Object Lock a access policies.

Lifecycle Policies

{
  "Rules": [{
    "ID": "archive-old-data", "Status": "Enabled",
    "Transitions": [
      {"Days": 30, "StorageClass": "STANDARD_IA"},
      {"Days": 90, "StorageClass": "GLACIER_IR"},
      {"Days": 365, "StorageClass": "DEEP_ARCHIVE"}
    ],
    "Filter": {"Prefix": "logs/"}
  }]
}

Automatický přesun dat ušetří až 95 % nákladů.

Cross-Region Replication

resource "aws_s3_bucket_replication_configuration" "repl" {
  bucket = aws_s3_bucket.source.id
  role   = aws_iam_role.replication.arn
  rule {
    id     = "replicate-all"
    status = "Enabled"
    destination {
      bucket        = aws_s3_bucket.replica.arn
      storage_class = "STANDARD_IA"
    }
  }
}

Event Notifications

  • Lambda — zpracování uploadů
  • SQS — async processing
  • EventBridge — advanced routing

Summary

S3 = event-driven platforma. Lifecycle pro cost optimization, replication pro DR.

Need Help with Implementation?

Our team has experience designing and implementing modern architectures. We’re happy to help.

Free Consultation

Share:

CORE SYSTEMS tým

Stavíme core systémy a AI agenty, které drží provoz. 15 let zkušeností s enterprise IT.