Skip to content
This repository has been archived by the owner on Mar 1, 2022. It is now read-only.

Commit

Permalink
Update dynamodb.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Van-Hoang-Kha authored Feb 8, 2022
1 parent 2601ded commit f318969
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions dynamodb.md
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,8 @@ Bước 3: Nhập chi tiết thông tin từ file csv ở phần 2.1:


Bước 4: Để tạo bảng, ta sử dụng lệnh ` create-table` . Gõ lệnh:
```aws dynamodb create-table \
```
aws dynamodb create-table \
--table-name Music \
--attribute-definitions \
AttributeName=Artist,AttributeType=S \
Expand All @@ -417,7 +418,9 @@ Bước 4: Để tạo bảng, ta sử dụng lệnh ` create-table` . Gõ lện
AttributeName=SongTitle,KeyType=RANGE \
--provisioned-throughput \
ReadCapacityUnits=10,WriteCapacityUnits=5 \
--table-class STANDARD```
--table-class STANDARD
```



Expand Down

0 comments on commit f318969

Please sign in to comment.