Skip to content

Instantly share code, notes, and snippets.

@xximjasonxx
Created September 2, 2019 18:12
Embed
What would you like to do?
AWSTemplateFormatVersion: 2010-09-09
Description: "Creates infrastructure for Thumnbail Creator"
Resources:
ImageTable:
Type: AWS::DynamoDB::Table
Properties:
AttributeDefinitions:
- AttributeName: "Id"
AttributeType: "S"
KeySchema:
- AttributeName: "Id"
KeyType: HASH
ProvisionedThroughput:
ReadCapacityUnits: 5
WriteCapacityUnits: 5
TableName: "ImageDataTable2"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment