-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput.yaml
32 lines (32 loc) · 864 Bytes
/
output.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
AWSTemplateFormatVersion: '2010-09-09'
Resources:
GraphQL:
Properties:
CodeUri: s3://graphqlservertest2/58801ee57ac21e032eeafd2c1f50946c
Events:
GetRequest:
Properties:
Method: get
Path: /graphql
Type: Api
PostRequest:
Properties:
Method: post
Path: /graphql
Type: Api
Handler: graphql.graphqlHandler
Runtime: nodejs4.3
Type: AWS::Serverless::Function
GraphQLInspector:
Properties:
CodeUri: s3://graphqlservertest2/58801ee57ac21e032eeafd2c1f50946c
Events:
GetRequest:
Properties:
Method: get
Path: /graphiql
Type: Api
Handler: graphql.graphiqlHandler
Runtime: nodejs4.3
Type: AWS::Serverless::Function
Transform: AWS::Serverless-2016-10-31