⚠️ This lesson is retired and might contain outdated information.

Create Data Models using AWS Amplify and Populate Data

Ali Spittel
InstructorAli Spittel
Share this video with your friends

Social Share Links

Send Tweet

To start with our application, we first need some content to display on our app. In sandbox.amplifyapp.com, we can create two models, our Post and Blog models that we will populate with data.

Instructor: [0:00] First, we'll need to create the data models for our application. Head to sandbox.amplifyapp.com to get started. We'll start with a blank data model and use React, then click Get started. Then we'll add two models -- first, blog, and second, post.

[0:18] The blog will be a publication that has a collection of posts attached to it. The blog will have a name. Posts will have title and content. All the fields will be strings that will make title required and name required.

[0:33] We'll also have a one-to-many relationship between blog and post. Each blog will have many posts attached to it. Then click Save. This is the data schema for our app.