Amazon AWS RDS

Connecting to Amazon RDS service.

Introduction

In this tutorial, you’ll learn how to create an account with the Amazon web service (AWS), set up your external relational database and connect it for using with Appery.io API Express.

Creating Amazon AWS Account

  1. Open the link – https://aws.amazon.com.
  2. Click Create a Free Account and complete the registration.

Creating Database

  1. After your registration has been completed, you can login with your account on the main page.
    After successful login, you’ll get access to the Amazon Web Services console.
  2. Select Database > RDS:
941
  1. On the next page, click Create database:
1410
  1. Choose the Standard create database creation method.
  2. For Engine options, select PostgreSQL and the PostgreSQL 13.4-R1 version:
672
  1. Keep the Production template selected.
  2. In the Availability and durability section, choose Single DB instance.
  3. Then, type a name for your DB cluster.
  4. Under Credentials Settings, enter the master password and confirm it:
509
  1. In the DB instance class section, choose Burstable classes. In this example, we will use db.t3.micro. Also, enable the Include previous generation classes toggle:
688
  1. In the Storage section, select the General Purpose SSD (gp2) option and disable the Enable storage autoscaling check box:
689
  1. In the Connectivity section, select Create new VPC, set the Public access option to Yes; for the VPC security group, enable Create new and enter the New VPC security group name = db:
689
  1. Unfold the Additional configuration section, for Initial database name, enter db1 and then disable the following options:
  • Enable automated backups
  • Enable encryption
  • Enable Performance Insights
  • Enable Enhanced monitoring
  • Enable deletion protection:
378

🚧

Note!

Additional configuration settings depend on your development and budgeting needs and may vary.

  1. Click Create database:
370
  1. Now, you can review your AWS database:
1294
  1. Select the database, scroll down to the Security group rules section, and then choose Inbound for the first security group:
1255
  1. Now, let’s click it to review the security group:
1255
  1. Select the db security group in the Inbound rules tab and then click the Edit inbound rules button:
1334
  1. Choose the Anywhere-IPv4 option for its source and then click Save rules:
1518

You should receive the confirmation message stating that your inbound security group rules have been successfully modified.

🚧

Important!

Note that account settings are region-dependent.
In our example, we were using the us-east=1 region but you might need to modify them according to your region:

362

Creating Database Table

Now, to start working with API Express, we need to create a table(s) by using special database tools.

  1. Let’s take, as an example, pgAdmin: https://www.pgadmin.org/download/ and save it to the drive.
  2. Install it and run on your machine.
  3. On the main app page, click Add New Server:
1530
  1. Under the Connection tab, enter the server name: aws_test:
1135
  1. After that, click the Connection tab and enter the host name/address obtained from the Amazon database Endpoint, Maintenance database = db1, Username = postgres, Password, then enable the Save password? toggle and then click the Save button:
1138

📘

Host name/address can be found in the AWS database Connectivity & security section as the Amazon database Endpoint:

1260
  1. In the aws_test tree, click Databases > db1> Schemas > Tables, then right click Create > Table:
809
  1. Right-click on Tables, then select New Table.
  2. In the new window, enter the table name, for example, *test and switch to the Columns tab:
1228
  1. Add the columns to your table by clicking the + button and defining their names and types.
    In our example, we add two columns: (id of the serial data type (will automatically be modified to integer) and name of the character varying data type with Length/Precision value set to 100). Also, enable the Not Null? and Primary key? toggles for the id column:
1343
  1. Click Save: a new table appears on the list:
459

Filling Table with Data

Let’s add some data to the table.

  1. In the pgAdmin application, right-click on the table (here it’s the test table), then select View/Edit Data, and then All Rows:
708
  1. In the new page, enter some data into the fields provided and click the Save Data Changes button:
1094

📘

Primary Key

Make sure that the table has a primary key defined.

Now, when we have a table filled in, let’s create an API Express project to check how our model works.

Configuring Firewall Rules

Please note, that you might need to follow the steps in Exposing Your Database to API Express to configure firewall rules.

Adding Database Connection to API Express

  1. In the Appery.io Visual Builder, go to the API Express tab.
  2. There, click Create new DB connection, fill in all the required information: enter the connection name, select Relational database for Connection type, and, for Database type, select PostgreSQL. For Host, enter the Amazon database Endpoint that can be found in the AWS database Connectivity & security section (see Step 5 in the Creating Database Table.
  3. Also, enter the database name (db1), Username (postgres), and the password.
  4. To ensure it works correctly, click Test:
614
  1. Then click Save.
  2. Now, let’s create a new project: under the same API Express tab, click Create new project, enter its name, for example AmazonTestProject, and click Create:
1217
  1. Open the project and click the new service link:
1686
  1. In the new window, enter the service name, select the connection and table, then click the Generate service link:
828
  1. The model is saved and can now be tested under the API Express menu:
622