Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Go: Added missing parameter in example usage of DynamoDB #6490

Merged
merged 1 commit into from
May 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion go/dynamodb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,12 @@ The table has two attributes:

Creates a new item in a DynamoDB table.

`go run CreateTableItem -d TABLE -y YEAR -t TITLE -r RATING`
`go run CreateTableItem -d TABLE -y YEAR -t TITLE -p PLOT -r RATING`

- _TABLE_ is the name of the table.
- _YEAR_ is the year that the movie was released.
- _TITLE_ is the title of the movie.
- _PLOT_ is the plot of the movie.
- _RATING_ is the rating, from 0.0 to 10.0, of the movie.

The unit test accepts similar values in _config.json_.
Expand Down
Loading