Skip to content

Instantly share code, notes, and snippets.

@xximjasonxx
Created September 7, 2019 01:08
Embed
What would you like to do?
AWSTemplateFormatVersion: 2010-09-09
Description: "Creates infrastructure for Thumnbail Creator"
Parameters:
ApiGatewayName:
Type: String
Default: tcapigateway
Description: Enter the name of the API Gateway
Resources:
ApiGatewayRest:
Type: AWS::ApiGateway::RestApi
Properties:
Name: !Ref ApiGatewayName
Description: Api Gateway to enable reading and writing of image data
BinaryMediaTypes:
- image/png
EndpointConfiguration:
Types:
- REGIONAL
DependsOn:
- ImageTable
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment