Created
September 2, 2019 02:57
-
-
Save xximjasonxx/fa2d846d2a42149baca328479f2578bd to your computer and use it in GitHub Desktop.
This file contains 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 | |
Description: "Creates infrastructure for Thumnbail Creator" | |
Resources: | |
ImageUploadTopic: | |
Type: AWS::SNS::Topic | |
Properties: | |
TopicName: ImageUploadTopic | |
Subscription: | |
- Endpoint: !GetAtt CreateThumbnailFunction.Arn | |
Protocol: lambda | |
- Endpoint: !GetAtt AnalyzeImageFunction.Arn | |
Protocol: lambda |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment