Categorygithub.com/AJ2O/golang-notetaker
modulepackage
0.0.0-20201220170640-e452e83ef77f
Repository: https://github.com/aj2o/golang-notetaker.git
Documentation: pkg.go.dev

# README

https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/dynamo-example-read-table-item.html

Create DynamoDB Table

  • Name: Project-NoteTaker-Test
  • Partition Key: NoteID (String)
  • Secondary Index (GSI):
    • UserID (String)
    • LastModifiedDate (String)
  • Primary:
    • RCU=5
    • WCU=5
  • Secondary
    • RCU=5
    • WCU=1
  • Other Attributes
    • CreationDate (String)
    • NoteID (String)
    • Content (String)
    • Views (Number)

# Packages

No description provided by the author
No description provided by the author

# Structs

LoggedInUser contains the currently active account's information.