This repository was archived by the owner on Jun 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtemplate.yaml
executable file
·460 lines (433 loc) · 13.7 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
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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: >
Sample code for AWS blog post "Building a GraphQL interface to Amazon QLDB with AWS AppSync"
Globals:
Function:
Timeout: 20
Resources:
## QLDB ##
QldbLedger:
Type: AWS::QLDB::Ledger
Properties:
DeletionProtection: false
Name: vehicle-registration
PermissionsMode: ALLOW_ALL
## Lambda ##
# Lambda function to integrate QLDB and AppSync
QLDBIntegrationFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: QLDBIntegrationFunction
Handler: qldb.App::handleRequest
Runtime: java11
MemorySize: 512
Tracing: Active
Environment:
Variables:
QLDB_LEDGER: !Ref QldbLedger
Policies:
- Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- qldb:ExecuteStatement
- qldb:GetRevision
- qldb:SendCommand
Resource: !Sub "arn:aws:qldb:${AWS::Region}:${AWS::AccountId}:ledger/${QldbLedger}"
# For more information, see https://github.com/aws-cloudformation/custom-resource-helper
LoadSampleDataResourceFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: LoadSampleDataResource
Handler: custom_resource.handler
Runtime: python3.7
Timeout: 300
Policies:
- Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- qldb:ExecuteStatement
- qldb:GetRevision
- qldb:SendCommand
Resource: !Sub "arn:aws:qldb:${AWS::Region}:${AWS::AccountId}:ledger/${QldbLedger}"
LoadSampleDataResource:
Type: Custom::LoadSampleData
Properties:
QldbLedger: !Ref QldbLedger
ServiceToken: !GetAtt LoadSampleDataResourceFunction.Arn
## AppSync ##
DmvApi:
Type: AWS::AppSync::GraphQLApi
Properties:
AuthenticationType: API_KEY
Name: DMVApi
XrayEnabled: true
# LogConfig:
# CloudWatchLogsRoleArn: !GetAtt AppSyncServiceRole.Arn
# FieldLogLevel: "ALL"
DmvApiKey:
Type: AWS::AppSync::ApiKey
Properties:
ApiId: !GetAtt DmvApi.ApiId
Description: API Key for DMV API
DmvSchema:
Type: AWS::AppSync::GraphQLSchema
Properties:
ApiId: !GetAtt DmvApi.ApiId
DefinitionS3Location: schema.graphql
## AppSync -- Queries ##
GetVehicleQueryResolver:
Type: AWS::AppSync::Resolver
Properties:
ApiId: !GetAtt DmvApi.ApiId
TypeName: Query
FieldName: getVehicle
DataSourceName: !GetAtt QLDBIntegrationDataSource.Name
RequestMappingTemplate: |
{
"version": "2017-02-28",
"operation": "Invoke",
"payload": {
"action": "Query",
"payload": [
{
"query": "SELECT * FROM Vehicle AS t WHERE t.VIN = ?",
"args": [ "$ctx.args.vin" ]
}
]
}
}
ResponseMappingTemplate: |
#if ($ctx.result.error)
$utils.error($ctx.result.error)
#else
#set( $result = $util.parseJson($ctx.result.result) )
$util.toJson($result[0])
#end
GetVehicleRegistrationQueryResolver:
Type: AWS::AppSync::Resolver
Properties:
ApiId: !GetAtt DmvApi.ApiId
TypeName: Query
FieldName: getVehicleRegistration
DataSourceName: !GetAtt QLDBIntegrationDataSource.Name
RequestMappingTemplate: |
{
"version": "2017-02-28",
"operation": "Invoke",
"payload": {
"action": "Query",
"payload": [
{
"query": "SELECT * FROM VehicleRegistration AS t WHERE t.VIN = ?",
"args": [ "$ctx.args.vin" ]
}
]
}
}
ResponseMappingTemplate: |
#if ($ctx.result.error)
$utils.error($ctx.result.error)
#else
#set( $result = $util.parseJson($ctx.result.result) )
$util.toJson($result[0])
#end
GetPersonQueryResolver:
Type: AWS::AppSync::Resolver
Properties:
ApiId: !GetAtt DmvApi.ApiId
TypeName: Query
FieldName: getPerson
DataSourceName: !GetAtt QLDBIntegrationDataSource.Name
RequestMappingTemplate: |
{
"version": "2017-02-28",
"operation": "Invoke",
"payload": {
"action": "Query",
"payload": [
{
"query": "SELECT * FROM Person AS t WHERE t.GovId = ?",
"args": [ "$ctx.args.govId" ]
}
]
}
}
ResponseMappingTemplate: |
#if ($ctx.result.error)
$utils.error($ctx.result.error)
#else
#set( $result = $util.parseJson($ctx.result.result) )
$util.toJson($result[0])
#end
OwnersFieldResolver:
Type: AWS::AppSync::Resolver
Properties:
ApiId: !GetAtt DmvApi.ApiId
TypeName: Owners
FieldName: PrimaryOwner
DataSourceName: !GetAtt QLDBIntegrationDataSource.Name
RequestMappingTemplate: |
{
"version": "2017-02-28",
"operation": "Invoke",
"payload": {
"action": "Query",
"payload": [
{
"query": "SELECT * FROM Person as p BY pid WHERE pid = ?",
"args": [ "$ctx.source.PrimaryOwner.PersonId" ]
}
]
}
}
ResponseMappingTemplate: |
#if ($ctx.result.error)
$utils.error($ctx.result.error)
#else
#set( $result = $util.parseJson($ctx.result.result) )
$util.toJson($result[0])
#end
OwnersSecondaryOwnersFieldResolver:
Type: AWS::AppSync::Resolver
Properties:
ApiId: !GetAtt DmvApi.ApiId
TypeName: Owners
FieldName: SecondaryOwners
DataSourceName: !GetAtt QLDBIntegrationDataSource.Name
RequestMappingTemplate: |
{
"version": "2017-02-28",
"operation": "Invoke",
"payload": {
"action": "Query",
"payload": [
{
"query": "SELECT * FROM Person as p BY pid WHERE pid IN ?",
"args": [ "$ctx.source.SecondaryOwners" ]
}
]
}
}
ResponseMappingTemplate: |
#set( $result = $util.parseJson($ctx.result.result) )
$util.toJson($result)
VehiclesByOwnerQueryResolver:
Type: AWS::AppSync::Resolver
Properties:
ApiId: !GetAtt DmvApi.ApiId
TypeName: Query
FieldName: vehiclesByOwner
DataSourceName: !GetAtt QLDBIntegrationDataSource.Name
RequestMappingTemplate: |
{
"version": "2017-02-28",
"operation": "Invoke",
"payload": {
"action": "Query",
"payload": [
{
"query": "SELECT id FROM Person AS t BY id WHERE t.GovId = ?",
"args": [ "$ctx.args.govId" ]
},
{
"query": "SELECT Vehicle FROM Vehicle INNER JOIN VehicleRegistration AS r ON Vehicle.VIN = r.VIN WHERE r.Owners.PrimaryOwner.PersonId = ?",
"args": [ "$.[0].id" ]
}
]
}
}
ResponseMappingTemplate: |
#if ($ctx.result.error)
$utils.error($ctx.result.error)
#end
#set( $vehicles = $util.parseJson($ctx.result.result) )
#set( $result = [] )
#foreach($v in $vehicles)
$util.qr($result.add($v.Vehicle))
#end
$util.toJson($result)
GetOwnershipHistoryQueryResolver:
Type: AWS::AppSync::Resolver
Properties:
ApiId: !GetAtt DmvApi.ApiId
TypeName: Query
FieldName: getOwnershipHistory
DataSourceName: !GetAtt QLDBIntegrationDataSource.Name
RequestMappingTemplate: |
#set( $months = $util.defaultIfNull($ctx.args.monthsAgo, 3) )
#set( $currEpochTime = $util.time.nowEpochMilliSeconds() )
#set( $fromEpochTime = $currEpochTime - ($months * 30 * 24 * 60 * 60 * 1000) )
#set( $fromTime = $util.time.epochMilliSecondsToISO8601($fromEpochTime) )
{
"version": "2017-02-28",
"operation": "Invoke",
"payload": {
"action": "Query",
"payload": [
{
"query": "SELECT id FROM VehicleRegistration AS t BY id WHERE t.VIN = ?",
"args": [ "$ctx.args.vin" ]
},
{
"query": "SELECT * FROM history(VehicleRegistration, `$fromTime`) AS h WHERE h.metadata.id = ?",
"args": [ "$.[0].id" ]
}
]
}
}
ResponseMappingTemplate: |
#if ($ctx.result.error)
$utils.error($ctx.result.error)
#end
#set( $result = $util.parseJson($ctx.result.result) )
#set( $history = [] )
#foreach($item in $result)
#set( $data = $item.data )
## Need to set the type of each history item ... could try to make this more dynamic
$util.qr($data.put("__typename", "VehicleRegistration"))
#set( $h = {
"id": "$item.metadata.id",
"version": $item.metadata.version,
"txTime": "$item.metadata.txTime",
"txId": "$item.metadata.txId",
"hash": "$item.hash",
"data": $data
} )
$util.qr($history.add($h))
#end
$util.toJson($history)
## AppSync -- Mutations ##
UpdateVehicleOwnerMutation:
Type: AWS::AppSync::Resolver
Properties:
ApiId: !GetAtt DmvApi.ApiId
TypeName: Mutation
FieldName: updateVehicleOwner
DataSourceName: !GetAtt QLDBIntegrationDataSource.Name
RequestMappingTemplate: |
{
"version": "2017-02-28",
"operation": "Invoke",
"payload": {
"action": "Query",
"payload": [
{
"query": "SELECT id FROM Person AS t BY id WHERE t.GovId = ?",
"args": [ "$ctx.args.govId" ]
},
{
"query": "UPDATE VehicleRegistration AS v SET v.Owners.PrimaryOwner.PersonId = ? WHERE v.VIN = ?",
"args": [ "$.[0].id", "$ctx.args.vin" ]
}
]
}
}
ResponseMappingTemplate: |
#if ($ctx.result.error)
$utils.error($ctx.result.error)
#else
$util.toJson($ctx.result.success)
#end
AddSecondaryOwnerMutation:
Type: AWS::AppSync::Resolver
Properties:
ApiId: !GetAtt DmvApi.ApiId
TypeName: Mutation
FieldName: addSecondaryOwner
DataSourceName: !GetAtt QLDBIntegrationDataSource.Name
RequestMappingTemplate: |
{
"version": "2017-02-28",
"operation": "Invoke",
"payload": {
"action": "Query",
"payload": [
{
"query": "SELECT id FROM Person AS t BY id WHERE t.GovId = ?",
"args": [ "$ctx.args.govId" ]
},
{
"query": "FROM VehicleRegistration AS v WHERE v.VIN = ? INSERT INTO v.Owners.SecondaryOwners VALUE ?",
"args": [ "$ctx.args.vin", "$.[0].id" ]
}
]
}
}
ResponseMappingTemplate: |
#if ($ctx.result.error)
$utils.error($ctx.result.error)
#else
$util.toJson($ctx.result.success)
#end
## AppSync -- Pipeline Resolver Functions ##
GetDocumentByIdFunction:
Type: AWS::AppSync::FunctionConfiguration
Properties:
ApiId: !GetAtt DmvApi.ApiId
Name: GetDocumentById
Description: Get the document ID of a particular QLDB document.
DataSourceName: !GetAtt QLDBIntegrationDataSource.Name
FunctionVersion: "2018-05-29"
RequestMappingTemplate: |
{
"version": "2017-02-28",
"operation": "Invoke",
"payload": {
"action": "Query",
"payload": [
{
"query": "SELECT id FROM $ctx.args.tableName AS t BY id WHERE t.$ctx.args.fieldName = ?",
"args": [ "$ctx.args.id" ]
}
]
}
}
ResponseMappingTemplate: |
#set($result = $util.parseJson($ctx.result.result))
$util.toJson($result[0].id)
## AppSync -- Data Sources ##
QLDBIntegrationDataSource:
Type: AWS::AppSync::DataSource
Properties:
ApiId: !GetAtt DmvApi.ApiId
Name: QldbIntegration
Description: Lambda function to integrate with QLDB
Type: AWS_LAMBDA
ServiceRoleArn: !GetAtt AppSyncServiceRole.Arn
LambdaConfig:
LambdaFunctionArn: !GetAtt QLDBIntegrationFunction.Arn
AppSyncServiceRole:
Type: AWS::IAM::Role
Properties:
ManagedPolicyArns:
- arn:aws:iam::aws:policy/service-role/AWSAppSyncPushToCloudWatchLogs
- arn:aws:iam::aws:policy/AWSXrayWriteOnlyAccess
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- sts:AssumeRole
Principal:
Service:
- appsync.amazonaws.com
Policies:
- PolicyName: aws-appsync-qldb-integration-policy
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- lambda:InvokeFunction
Resource:
- !GetAtt QLDBIntegrationFunction.Arn
Outputs:
ApiEndpoint:
Description: AppSync API Endpoint
Value: !GetAtt DmvApi.GraphQLUrl
ApiKey:
Description: AppSync API Key
Value: !GetAtt DmvApiKey.ApiKey