Last active
January 14, 2020 22:35
-
-
Save AndrewBestbier/55cae20cd9de28cb0c4c348ad1f852d3 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 # (5) | |
PrimaryKey: | |
Name: id # (6) | |
Type: String |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment