Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. AWSTemplateFormatVersion: 2010-09-09
  2. Description: "Creates infrastructure for Thumnbail Creator"
  3.  
  4. Parameters:
  5. ApiGatewayName:
  6. Type: String
  7. Default: tcapigateway
  8. Description: Enter the name of the API Gateway
  9.  
  10. Resources:
  11. ApiGatewayRest:
  12. Type: AWS::ApiGateway::RestApi
  13. Properties:
  14. Name: !Ref ApiGatewayName
  15. Description: Api Gateway to enable reading and writing of image data
  16. BinaryMediaTypes:
  17. - image/png
  18. EndpointConfiguration:
  19. Types:
  20. - REGIONAL
  21. DependsOn:
  22. - ImageTable
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement