Created
April 16, 2019 20:09
-
-
Save piyushjaware/3dc45fa4e380ced02ee82cc380ca18ea 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
MyApi: | |
Type: 'AWS::Serverless::Api' | |
Properties: | |
StageName: '<stage name>' | |
DefinitionBody: | |
swagger: '2.0' | |
info: | |
title: '<title>' | |
paths: | |
/<somepath>: | |
<method>: | |
x-amazon-apigateway-integration: | |
type: AWS | |
requestParameters: | |
integration.request.header.X-Amz-Invocation-Type: '''Event''' | |
httpMethod: <method> | |
uri: '<lambda uri>' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment