Skip to content

Instantly share code, notes, and snippets.

@AndrewBestbier
Created January 12, 2020 17:35
Show Gist options
  • Save AndrewBestbier/993a969c0a416911aac153ed601375aa to your computer and use it in GitHub Desktop.
Save AndrewBestbier/993a969c0a416911aac153ed601375aa to your computer and use it in GitHub Desktop.
AWSTemplateFormatVersion: "2010-09-09" # (1)
Transform: AWS::Serverless-2016-10-31 # (1)
Resources: # (2)
DynamoBooksTable: # (3)
Type: AWS::Serverless::SimpleTable # (4)
Properties:
TableName: books # Naming our table
PrimaryKey:
Name: id # Setting the primary key of each item in our database as id
Type: String
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment