DEV Community

Cover image for AWS STORAGE SERVICES
Iniya Iniya
Iniya Iniya

Posted on

AWS STORAGE SERVICES

πŸ”Ή AWS STORAGE SERVICES

1️⃣ Amazon S3 (Simple Storage Service)

βœ… Service Overview

Amazon S3 is a scalable object storage service used to store and retrieve any amount of data from anywhere on the web.

βœ… Key Features

99.999999999% durability

Unlimited scalability

Versioning & lifecycle management

Encryption and IAM-based access control

βœ… AWS Category / Cloud Domain

Storage β†’ Object Storage

βœ… Where It Fits in Cloud / DevOps Lifecycle

Backup & restore

Data lakes

Static website hosting

CI/CD artifact storage

βœ… Programming Language / Access Methods

REST API

AWS SDKs (Java, Python, Node.js, Go)

AWS CLI & Management Console

βœ… Pricing Model

πŸ’° Pay for storage used, requests, and data transfer

2️⃣ Amazon EBS (Elastic Block Store)

βœ… Service Overview

Amazon EBS provides persistent block-level storage for Amazon EC2 instances.

βœ… Key Features

High performance SSD/HDD volumes

Snapshots for backup

Encryption at rest

Low-latency storage

βœ… AWS Category / Cloud Domain

Storage β†’ Block Storage

βœ… Where It Fits in Cloud / DevOps Lifecycle

OS and application disks for EC2

Databases and transactional workloads

βœ… Programming Language / Access Methods

Mounted as a disk on EC2

Managed via AWS CLI, SDKs, Console

βœ… Pricing Model

πŸ’° Pay per GB provisioned + snapshot storage

3️⃣ Amazon EFS (Elastic File System)

βœ… Service Overview

Amazon EFS is a fully managed, scalable file storage service for Linux-based workloads.

βœ… Key Features

Shared file access

Automatic scaling

POSIX-compliant

Highly available

βœ… AWS Category / Cloud Domain

Storage β†’ File Storage

βœ… Where It Fits in Cloud / DevOps Lifecycle

Shared file systems

Container and microservices workloads

Content management systems

βœ… Programming Language / Access Methods

NFS protocol

Access via EC2, EKS, Lambda

βœ… Pricing Model

πŸ’° Pay per GB of storage used

4️⃣ Amazon S3 Glacier

βœ… Service Overview

Amazon S3 Glacier is a low-cost archival storage service for long-term data retention.

βœ… Key Features

Very low storage cost

Multiple retrieval options (minutes to hours)

High durability

Integrated with Amazon S3

βœ… AWS Category / Cloud Domain

Storage β†’ Archival Storage

βœ… Where It Fits in Cloud / DevOps Lifecycle

Long-term backups

Compliance & archival storage

Disaster recovery

βœ… Programming Language / Access Methods

AWS SDKs

AWS CLI & Console

Managed through Amazon S3 lifecycle rules

βœ… Pricing Model

πŸ’° Low storage cost + retrieval-based pricing

πŸ”‘ Quick Exam Memory Aid

S3 β†’ Object storage

EBS β†’ Block storage

EFS β†’ File storage

Glacier β†’ Archive storage

Top comments (0)