AWS Database Services are Amazon’s fully managed and scalable database solution for your applications. Amazon provides a wide range of database options such as Amazon RDS, Aurora, DynamoDB, ElasticCache, and Redshift.
In this blog, I will be covering various AWS database services including Amazon RDS; the first AWS database offering. We will also cover basic features, overview, and use cases for each of these services.
What is AWS Database Services
AWS offers a wide range of database options that you can choose for your applications. AWS database services mainly fall into two categories: Relational and non-relational.
- Amazon RDS – Aurora, Oracle, PostgreSQL, MySQL, MariaDB, SQL Server
- DynamoDB
- ElasticCache – Memcached, Redis
- Redshift

Amazon Relational Database Service (Amazon RDS)
Relational databases store data in a table form with rows and columns and use SQL query language to query the data. In these databases, columns represent attributes and rows represent records. Each field in the table represents a data value.
Amazon Relational Database Service (Amazon RDS) makes it easy to spin up a database in the AWS cloud in just a few minutes. Amazon RDS is the most commonly used and a managed database service that automates all the time-consuming administration tasks such as provisioning, setup, patching, and backups.
Amazon RDS provides six different relational database options:
- Amazon Aurora
- Oracle Database
- PostgreSQL
- MySQL
- MariaDB
- Microsoft SQL Server

Read More : About AWS Route 53 .
Amazon RDS Use Cases
- Web and mobile applications
- E-Commerce applications
- Mobile and online games
Amazon RDS has two main features:
1. Multi-AZ Deployments
Amazon RDS Multi-Az deployments provide high availability and failover support. Amazon RDS allows you to have multiple copies of your database in multiple availability zones. Amazon RDS creates a synchronous standby replica of your DB instance in another Availability Zone and automatically switches or failover to a standby replica in another Availability Zone in case of a planned or unplanned outage if you have enabled Multi-AZ.

Multi-AZ is available for the following databases:
- SQL Server
- Oracle
- MySQL Server
- Postgre SQL
- MariaDB
2. Read Replicas
AWS RDS Read replicas provides the benefit that allows you to have a read-only copy of your database in the same or a different region thereby reducing latency. Whenever there is a change to the source database instance, the updates are asynchronously copied to the read replica. Read replicas are primarily used for read-heavy database workloads.

Read Replicas are available for the following databases:
- MySQL Server
- PostgreSQL
- MariaDB
- Oracle
- Aurora
Amazon DynamoDB
DynamoDB is Amazon’s long-running NoSQL database solution since 2012. NoSQL databases originally refer to as “non-SQL” or “not only SQL” or “non-relational” databases. NoSQL is commonly used to handle big data – large volumes of unstructured or semi-structured data.
Amazon DynamoDB is a fast, fully managed NoSQL database service that supports flexible data models such as both document and key-value data models. It is used for all applications that need consistent, single-digit millisecond performance latency at any scale.
Amazon DynamoDB Use Cases
- Ad tech
- Gaming
- Retail
- Banking and finance
- Media and entertainment
- Software as a service (SaaS)
Check Out: AWS Cloudwatch vs Cloudtrail, to know the major differences between them.
Amazon ElastiCache
ElastiCache is AWS in-memory database solution that makes it easy to deploy, operate, and scale an in-memory cache in the cloud. It provides faster retrieval of information from fast, managed, in-memory caches instead of relying entirely on slower disk-based databases, thereby improving the performance of web applications.

Amazon ElastiCache offers two open-source in-memory cache database engines:
- Memcached: Simple and easy solution to start with, ideal for small and static data.
- Redis: It provides support for Multi-AZ, backup & restores, and persistence. It is ideal for more dense and complex data.
Let’s take a look at some basic differences between Memcached and Redis.

Amazon ElastiCache Use Cases
- Session stores
- Gaming
- Geospatial services
- Real-time analytics
Amazon Redshift
Amazon Redshift is a data warehousing solution used for business intelligence applications. It is a fast and powerful, fully managed, petabyte-scale data warehouse service in the cloud. This service manages all the work of setting up, operating, and scaling a data warehouse. It also manages all administrative tasks including provisioning capacity, monitoring and backing up the cluster, and applying patches and upgrades to the Amazon Redshift engine.

An Amazon Redshift cluster is a set of nodes, which has one leader node and one or more compute nodes. Each cluster contains one or more databases and runs an Amazon Redshift engine. The type and number of compute nodes that you need depend on the size of your data, the number of queries you will execute, and the query execution performance that you need.
Read More: About AWS Elastic Load Balancers. Click here
Amazon Aurora
Amazon Aurora is the managed relational database solution of AWS. It is a MySQL and PostgreSQL-compatible relational database engine that improves the speed and high-availability of databases. Recently, AWS also launched the serverless and multi-master versions of Aurora, and any of these features can alone be the reason to choose it.
Amazon Aurora delivers up to five times the performance of MySQL and three times the performance of PostgreSQL databases at a much lower price. It also supports cross-region read replicas.

Aurora provides more reliability in terms of storage. Its database storage is separate from the instances. Aurora allows your data to be replicated in 6 storage nodes, each of 10GB chunks, distributed in 3 Availability Zones. For each Aurora database instance, you will have 6 copies of your data, two in each Availability Zone.
Amazon Aurora Use Cases
- Enterprise applications
- Software as a Service (SaaS) offerings
- Web and mobile gaming applications
Frequently Asked Questions (FAQs)
By now, you must have a basic understanding of AWS database service and all of its database offerings and their features. Let’s take a look at some frequently asked questions, asked by trainees in our AWS Solutions Architect Associate Certification training.
Q1. What about database encryption on AWS?
Ans. Amazon RDS encrypts your databases using keys you manage with the AWS Key Management Service (KMS). On a database instance running with Amazon RDS encryption, data stored at rest in the underlying storage is encrypted, as are its automated backups, read replicas, and snapshots.
Q2. Can DynamoDB be used by applications running on any operating system?Ans. Yes. DynamoDB is a fully managed cloud service that you access via API. Applications running on any operating system (such as Linux, Windows, iOS, Android, Solaris, AIX, and HP-UX) can use DynamoDB. We recommend using the AWS SDKs to get started with DynamoDB.
Q3. What type of indexing is used in DynamoDB?
Ans. DynamoDB supports two types of secondary indexes: Global secondary index — An index with a partition key and a sort key that can be different from those on the base table. A global secondary index is considered “global” because queries on the index can span all of the data in the base table, across all partitions.
Q4. How does SNS work? Is this for SMS only?
Ans. Amazon SNS is used to send text messages, or SMS messages, to SMS-enabled devices. You can send a message directly to a phone number, or you can send a message to multiple phone numbers at once by subscribing those phone numbers to a topic and sending your message to the topic.