Created
January 12, 2020 17:35
-
-
Save AndrewBestbier/993a969c0a416911aac153ed601375aa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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