-
Notifications
You must be signed in to change notification settings - Fork 15
/
serverless.yml.example
310 lines (305 loc) · 8.09 KB
/
serverless.yml.example
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
service: mailbox
frameworkVersion: "3"
provider:
name: aws
runtime: provided.al2023
memorySize: 128
stage: ${opt:stage, 'dev'}
region: ${opt:region, 'us-west-2'}
environment:
REGION: ${self:provider.region}
DYNAMODB_TABLE: mailbox-${self:provider.stage}
DYNAMODB_TIME_INDEX: TimeIndex
DYNAMODB_ORIGINAL_INDEX: OriginalMessageIDIndex
S3_BUCKET: example-mailbox # set this to your S3 bucket name
SQS_QUEUE: example-mailbox # set this to your SQS queue name
iam:
role:
statements:
- Effect: Allow
Action:
- dynamodb:GetItem
- dynamodb:PutItem
- dynamodb:UpdateItem
- dynamodb:DeleteItem
- dynamodb:BatchGetItem
- dynamodb:BatchWriteItem
Resource: "arn:aws:dynamodb:${self:provider.region}:*:table/${self:provider.environment.DYNAMODB_TABLE}"
- Effect: Allow
Action:
- dynamodb:Query
- dynamodb:Scan
Resource: "arn:aws:dynamodb:${self:provider.region}:*:table/${self:provider.environment.DYNAMODB_TABLE}/index/${self:provider.environment.DYNAMODB_TIME_INDEX}"
- Effect: Allow
Action:
- dynamodb:Query
- dynamodb:Scan
Resource: "arn:aws:dynamodb:${self:provider.region}:*:table/${self:provider.environment.DYNAMODB_TABLE}/index/${self:provider.environment.DYNAMODB_ORIGINAL_INDEX}"
- Effect: Allow
Action:
- s3:GetObject
- s3:DeleteObject
Resource: "arn:aws:s3::*:${self:provider.environment.S3_BUCKET}/*"
- Effect: Allow
Action:
- sqs:GetQueueUrl
- sqs:SendMessage
Resource: "arn:aws:sqs:${self:provider.region}:*:${self:provider.environment.SQS_QUEUE}"
- Effect: Allow
Action:
- ses:SendEmail
- ses:SendRawEmail
Resource: "arn:aws:ses:${self:provider.region}:*:identity/*"
apiGateway:
shouldStartNameWithService: true
package:
patterns:
- "!./**"
individually: true
functions:
emailReceive:
handler: bootstrap
environment:
ENABLE_SQS: true
package:
artifact: bin/emailReceive.zip
emailsList:
handler: bin/api/emails/list
events:
- httpApi:
path: /emails
method: GET
authorizer:
type: aws_iam
package:
artifact: bin/emails_list.zip
emailsGet:
handler: bootstrap
events:
- httpApi:
method: GET
path: /emails/{messageID}
authorizer:
type: aws_iam
package:
artifact: bin/emails_get.zip
emailsGetRaw:
handler: bootstrap
events:
- httpApi:
method: GET
path: /emails/{messageID}/raw
authorizer:
type: aws_iam
- httpApi:
method: GET
path: /emails/{messageID}/download
authorizer:
type: aws_iam
package:
artifact: bin/emails_getRaw.zip
emailsGetContent:
handler: bootstrap
events:
- httpApi:
method: GET
path: /emails/{messageID}/attachments/{contentID}
authorizer:
type: aws_iam
- httpApi:
method: GET
path: /emails/{messageID}/inlines/{contentID}
authorizer:
type: aws_iam
- httpApi:
method: GET
path: /emails/{messageID}/others/{contentID}
authorizer:
type: aws_iam
package:
artifact: bin/emails_getContent.zip
emailsRead:
handler: bootstrap
events:
- httpApi:
method: POST
path: /emails/{messageID}/read
authorizer:
type: aws_iam
- httpApi:
method: POST
path: /emails/{messageID}/unread
authorizer:
type: aws_iam
package:
artifact: bin/emails_read.zip
emailsTrash:
handler: bootstrap
events:
- httpApi:
method: POST
path: /emails/{messageID}/trash
authorizer:
type: aws_iam
package:
artifact: bin/emails_trash.zip
emailsUntrash:
handler: bootstrap
events:
- httpApi:
method: POST
path: /emails/{messageID}/untrash
authorizer:
type: aws_iam
package:
artifact: bin/emails_untrash.zip
emailsDelete:
handler: bootstrap
events:
- httpApi:
method: DELETE
path: /emails/{messageID}
authorizer:
type: aws_iam
package:
artifact: bin/emails_delete.zip
emailsCreate:
handler: bootstrap
events:
- httpApi:
method: POST
path: /emails
authorizer:
type: aws_iam
package:
artifact: bin/emails_create.zip
emailsSave:
handler: bootstrap
events:
- httpApi:
method: PUT
path: /emails/{messageID}
authorizer:
type: aws_iam
package:
artifact: bin/emails_save.zip
emailsSend:
handler: bootstrap
events:
- httpApi:
method: POST
path: /emails/{messageID}/send
authorizer:
type: aws_iam
package:
artifact: bin/emails_send.zip
emailsReparse:
handler: bootstrap
events:
- httpApi:
method: POST
path: /emails/{messageID}/reparse
authorizer:
type: aws_iam
package:
artifact: bin/emails_reparse.zip
threadsGet:
handler: bootstrap
events:
- httpApi:
method: GET
path: /threads/{threadID}
authorizer:
type: aws_iam
package:
artifact: bin/threads_get.zip
threadsDelete:
handler: bootstrap
events:
- httpApi:
method: DELETE
path: /threads/{threadID}
authorizer:
type: aws_iam
package:
artifact: bin/threads_delete.zip
threadsTrash:
handler: bootstrap
events:
- httpApi:
method: POST
path: /threads/{threadID}/trash
authorizer:
type: aws_iam
package:
artifact: bin/threads_trash.zip
threadsUntrash:
handler: bootstrap
events:
- httpApi:
method: POST
path: /threads/{threadID}/untrash
authorizer:
type: aws_iam
package:
artifact: bin/threads_untrash.zip
info:
handler: bootstrap
events:
- httpApi:
method: GET
path: /info
authorizer:
type: aws_iam
package:
artifact: bin/info.zip
resources:
Resources:
MailboxDynamoDbTable:
Type: AWS::DynamoDB::Table
Properties:
TableName: ${self:provider.environment.DYNAMODB_TABLE}
AttributeDefinitions:
- AttributeName: MessageID
AttributeType: S
- AttributeName: TypeYearMonth
AttributeType: S
- AttributeName: DateTime
AttributeType: S
- AttributeName: OriginalMessageID
AttributeType: S
KeySchema:
- AttributeName: MessageID
KeyType: HASH
ProvisionedThroughput:
ReadCapacityUnits: 3
WriteCapacityUnits: 1
GlobalSecondaryIndexes:
- IndexName: ${self:provider.environment.DYNAMODB_TIME_INDEX}
KeySchema:
- AttributeName: TypeYearMonth
KeyType: HASH
- AttributeName: DateTime
KeyType: RANGE
Projection:
ProjectionType: INCLUDE
NonKeyAttributes:
- Subject
- From
- To
- Unread
- TrashedTime
- ThreadID
- IsThreadLatest
ProvisionedThroughput:
ReadCapacityUnits: 3
WriteCapacityUnits: 1
- IndexName: ${self:provider.environment.DYNAMODB_ORIGINAL_INDEX}
KeySchema:
- AttributeName: OriginalMessageID
KeyType: HASH
Projection:
ProjectionType: KEYS_ONLY
ProvisionedThroughput:
ReadCapacityUnits: 3
WriteCapacityUnits: 1