Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 539 Bytes

04_dynamo.md

File metadata and controls

21 lines (18 loc) · 539 Bytes

DynamoDB

You will need 1 tables, one for the users and one for the videos. The only configuration needed is to create the tables with the keys, as the attributes will be created as needed.

videos-table

  • Set the Primary key as video_id
  • A video with all atributes will have the following:
    {
        video_id: str
        video_name: str
        user_id: str
        user_email: str
        finished: bool
        duration: float
        transcription_words: float
        translation_words: float
    }