File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -40,12 +40,12 @@ Resources:
4040
4141### What is happening?
4242
43- 🎩 We are creating a table with a Primary Key called \ ` listingId\ ` and a Sort Key called \ ` listingName\ ` both of them are strings.
43+ 🎩 We are creating a table with a Primary Key called ` listingId ` and a Sort Key called ` listingName ` both of them are strings.
4444
4545🎩 For the ProvisionedThroughput section we are basically tell AWS how many operations per second can be allowed when data is being written or read. \
4646\
4747\
48- In the same directory lets create the table that will store our bookings called \ ` booking-db.yml\ ` :
48+ In the same directory lets create the table that will store our bookings called ` booking-db.yml ` :
4949
5050``` YAML
5151Resources :
@@ -71,9 +71,9 @@ Resources:
7171 WriteCapacityUnits : ${self:custom.tableThroughput}
7272` ` `
7373
74- We are doing the same thing here, only difference is that we made the Sort Key the \ ` listingId\ ` .
74+ We are doing the same thing here, only difference is that we made the Sort Key the ` listingId`.
7575
76- Now we need to reference it in our \ ` serverless.yml\ ` :
76+ Now we need to reference it in our `serverless.yml` :
7777
7878` ` ` YAML
7979resources:
You can’t perform that action at this time.
0 commit comments