Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Renamed Lambda function
  • Loading branch information
j13d authored Dec 5, 2018
1 parent fc4cc03 commit 9685fc7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ GET /books/{:id} (GetBook)

**Cart (DynamoDB)**

GET /cart (ListOrdersInCart)
GET /cart (ListItemsInCart)
POST /cart (AddToCart)
PUT /cart (UpdateCart)
DELETE /cart (RemoveFromCart)
Expand Down Expand Up @@ -319,17 +319,17 @@ GetBookResponse {

 

**ListOrdersInCart**
**ListItemsInCart**
Lambda function that lists the orders a user has placed.

```js
ListOrdersInCartRequest {
ListItemsInCartRequest {

}
```

```js
ListOrdersInCartResponse {
ListItemsInCartResponse {
orders[]
}
```
Expand Down Expand Up @@ -592,7 +592,7 @@ dynamodb:Query - table/Books
AWSLambdaBasicExecutionRole
dynamodb:GetItem - table/Books

**ListOrdersInCartLambda**
**ListItemsInCartLambda**
AWSLambdaBasicExecutionRole
dynamodb:Query - table/Cart

Expand Down

0 comments on commit 9685fc7

Please sign in to comment.