aws-laziness
v1.7.0
Published
[![License](https://img.shields.io/badge/License-Apache%202.0-yellowgreen.svg)](https://opensource.org/licenses/Apache-2.0) [![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.c
Downloads
8
Readme
aws-laziness :package:
Creating source code for lazy people (this is US :wink:)
db-model example
- key, type - obrigatory fields
- description - not mandatory field
User table example
{
"partitionKey": { "key": "UserId", "type": "string", "description": "User identification" },
"fields": [
{ "key": "UserName", "type": "string", "description": "User name" }
]
}
GameScore table example
{
"partitionKey": { "key": "UserId", "type": "string" },
"sortKey": { "key": "GameTitle", "type": "string", "description": "Game title" },
"fields": [
{ "key": "TopScore", "type": "number" },
{ "key": "TopScoreDateTime", "type": "string" },
{ "key": "Wins", "type": "number", "description": "Number of player wins" },
{ "key": "Losses", "type": "number", "description": "Number of player losses" }
]
}