forked from aws-samples/aws-rapid-prototyping-with-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.yaml
203 lines (201 loc) · 5.8 KB
/
template.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
AWSTemplateFormatVersion: '2010-09-09'
Outputs:
APIHandlerArn:
Value:
Fn::GetAtt:
- APIHandler
- Arn
APIHandlerName:
Value:
Ref: APIHandler
EndpointURL:
Value:
Fn::Sub: https://${RestAPI}.execute-api.${AWS::Region}.amazonaws.com/api/
RestAPIId:
Value:
Ref: RestAPI
Globals:
Function:
Environment:
Variables:
DYNAMODB_ENDPOINT_URL: null
DYNAMODB_TABLE_NAME: testUserTable
Resources:
APIHandler:
Properties:
CodeUri: ./app
Handler: app.dispatch_request
MemorySize: 128
Role:
Fn::GetAtt:
- DefaultRole
- Arn
Runtime: python3.8
Timeout: 60
Type: AWS::Serverless::Function
APIHandlerInvokePermission:
Properties:
Action: lambda:InvokeFunction
FunctionName:
Ref: APIHandler
Principal: apigateway.amazonaws.com
SourceArn:
Fn::Sub:
- arn:aws:execute-api:${AWS::Region}:${AWS::AccountId}:${RestAPIId}/*
- RestAPIId:
Ref: RestAPI
Type: AWS::Lambda::Permission
DefaultRole:
Properties:
AssumeRolePolicyDocument:
Statement:
- Action: sts:AssumeRole
Effect: Allow
Principal:
Service: lambda.amazonaws.com
Sid: ''
Version: '2012-10-17'
Policies:
- PolicyDocument:
Statement:
- Action:
- logs:CreateLogGroup
- logs:CreateLogStream
- logs:PutLogEvents
Effect: Allow
Resource: arn:aws:logs:*:*:*
Version: '2012-10-17'
PolicyName: DefaultRolePolicy
Type: AWS::IAM::Role
RestAPI:
Properties:
DefinitionBody:
definitions:
Empty:
title: Empty Schema
type: object
info:
title: hoge
version: '1.0'
paths:
/user:
put:
consumes:
- application/json
produces:
- application/json
responses:
'200':
description: 200 response
schema:
$ref: '#/definitions/Empty'
x-amazon-apigateway-integration:
contentHandling: CONVERT_TO_TEXT
httpMethod: POST
passthroughBehavior: when_no_match
responses:
default:
statusCode: '200'
type: aws_proxy
uri:
Fn::Sub: arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${APIHandler.Arn}/invocations
/user/{user_id}:
delete:
consumes:
- application/json
parameters:
- in: path
name: user_id
required: true
type: string
produces:
- application/json
responses:
'200':
description: 200 response
schema:
$ref: '#/definitions/Empty'
x-amazon-apigateway-integration:
contentHandling: CONVERT_TO_TEXT
httpMethod: POST
passthroughBehavior: when_no_match
responses:
default:
statusCode: '200'
type: aws_proxy
uri:
Fn::Sub: arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${APIHandler.Arn}/invocations
get:
consumes:
- application/json
parameters:
- in: path
name: user_id
required: true
type: string
produces:
- application/json
responses:
'200':
description: 200 response
schema:
$ref: '#/definitions/Empty'
x-amazon-apigateway-integration:
contentHandling: CONVERT_TO_TEXT
httpMethod: POST
passthroughBehavior: when_no_match
responses:
default:
statusCode: '200'
type: aws_proxy
uri:
Fn::Sub: arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${APIHandler.Arn}/invocations
patch:
consumes:
- application/json
parameters:
- in: path
name: user_id
required: true
type: string
produces:
- application/json
responses:
'200':
description: 200 response
schema:
$ref: '#/definitions/Empty'
x-amazon-apigateway-integration:
contentHandling: CONVERT_TO_TEXT
httpMethod: POST
passthroughBehavior: when_no_match
responses:
default:
statusCode: '200'
type: aws_proxy
uri:
Fn::Sub: arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${APIHandler.Arn}/invocations
schemes:
- https
swagger: '2.0'
x-amazon-apigateway-binary-media-types:
- application/octet-stream
- application/x-tar
- application/zip
- audio/basic
- audio/ogg
- audio/mp4
- audio/mpeg
- audio/wav
- audio/webm
- image/png
- image/jpg
- image/jpeg
- image/gif
- video/ogg
- video/mpeg
- video/webm
EndpointConfiguration: EDGE
StageName: api
Type: AWS::Serverless::Api
Transform: AWS::Serverless-2016-10-31