- Create an Aurora (PostgreSQL-compatible) cluster in the AWS RDS console
- Enable the Data API (required for Serverless + Query Editor)
- Connect using the RDS Query Editor and run a sample SQL query
- AWS account with permissions to create RDS/Aurora clusters
- Console access to Amazon RDS
- A username/password pair you will remember for DB authentication
- In the RDS console, go to Databases (or DB instances).
- Click Create.
- Choose Standard create.
- Select Aurora (PostgreSQL-compatible).
- Scroll to choose an engine version that supports the Query Editor (for this demo we used PostgreSQL 13.9).

- Keep default cluster settings unless you need custom networking, VPC, or subnet groups.
- For capacity, choose Serverless if you want Aurora Serverless. In the demo min and max capacity were both set to two capacity units.
- Leave connectivity defaults unless a specific VPC/subnet/security group is required.
Enable the Data API if you plan to use the RDS console Query Editor with Aurora Serverless. Without the Data API enabled, the Query Editor will be unable to connect to the cluster.

- Review all settings and click Create database.
- Wait for the cluster to show as available in the Databases list before attempting to connect.

- In the RDS console, open Query Editor.
- From the database dropdown select the newly created database.
- If prompted, provide the database credentials (username and password you configured) and click Connect database.
Note: The Query Editor requires valid database credentials (or an appropriate authentication method) and the necessary IAM permissions to use the editor in the console. For Aurora Serverless clusters, the Data API must be enabled so the editor can connect.

- Save queries: Click Save, give the query a name (e.g., “RDS query”) — saved queries appear in the Saved queries section.
- Recent queries: The Recent tab lists queries you have executed.
- Switch databases: Use Change database in the Query Editor, select a different DB, and provide the correct credentials.
| Item | Requirement / Notes | Links & References |
|---|---|---|
| Engine | Aurora PostgreSQL (supported versions only) | See AWS docs below |
| Serverless + Query Editor | Data API must be enabled | https://docs.aws.amazon.com/rds/ |
| Authentication | Valid DB credentials and console IAM permissions | Console access and DB user/password |
| Use case | Ad-hoc queries and light administration from browser | Good for quick checks; use full clients for heavy operations |
- If the Query Editor cannot connect, confirm Data API is enabled (for Serverless) and that you used the correct DB username/password.
- Ensure your AWS IAM role/user has permissions to use RDS console Query Editor and related APIs.
- If you need persistent client access, configure network/security groups and connect with a local psql client or use AWS Systems Manager Session Manager for secure access.
- Amazon RDS documentation: https://docs.aws.amazon.com/rds/
- Aurora Serverless & Data API overview: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html
- Query Editor in the AWS Console: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/QueryEditor.html