-
Notifications
You must be signed in to change notification settings - Fork 1
/
template.yaml
961 lines (872 loc) · 27.5 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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: PhotoOpsAI central application platform
Parameters:
ServiceName:
Type: String
Description: "Name of service"
ServiceEnv:
Type: String
Description: "Name of deployment environment"
Default: "prime"
LogLevel:
Type: String
Description: "Log level for functions; used internally in code."
Default: 'INFO'
AllowedValues:
- 'DEBUG'
- 'INFO'
- 'WARNING'
- 'ERROR'
- 'CRITICAL'
XRayTracingMode:
Type: String
Description: "AWS XRay tracing mode"
Default: PassThrough
AllowedValues:
- Active
- PassThrough
Globals:
Function:
Environment:
Variables:
LOG_LEVEL:
Ref: LogLevel
POWERTOOLS_SERVICE_NAME: !Ref AWS::StackName
Tracing: !Ref XRayTracingMode
Resources:
# Layer also brings in aws-lambda-powertools and boto3
CommonLayer:
Type: AWS::Serverless::LayerVersion
Properties:
LayerName: !Sub "${AWS::StackName}-${ServiceEnv}-CommonLayer"
ContentUri: src/common
RetentionPolicy: Delete
CompatibleRuntimes:
- python3.8
Metadata:
BuildMethod: makefile
CommonLayerArnSsmParam:
Type: AWS::SSM::Parameter
Properties:
Name: !Sub /layers/${AWS::StackName}/CommonLayerArn
Type: String
Value: !Ref CommonLayer
Description: ARN of PhotoOps Common Lambda layer for Python 3.8
IngestS3Event:
Type: AWS::Serverless::Function
Properties:
Description: "Ingest an S3 event"
CodeUri: src/handlers/IngestS3Event
Handler: function.handler
Runtime: python3.8
MemorySize: 128
Timeout: 3
Layers:
- !Ref CommonLayer
Events:
SnsEvent:
Type: SNS
Properties:
Topic: !Ref PhotoOpsIngestTopic
EventInvokeConfig:
DestinationConfig:
OnSuccess:
Type: EventBridge
Destination: !GetAtt EventBus.Arn
OnFailure:
Type: 'SQS'
Destination: !GetAtt IngestS3EventDlqQueue.Arn
IngestS3EventDlqQueue:
Type: AWS::SQS::Queue
# FIXME: Running close to memory limit but don't want to bump memory up for
# all transactions. Possibly we create small, medium, and large functions
# where we use the object size in the S3 event as a determining factor for
# which function gets invoked.
GetExifData:
Type: AWS::Serverless::Function
Properties:
Description: "Get EXIF data"
CodeUri: src/handlers/GetExifData
Handler: function.handler
Runtime: python3.8
MemorySize: 128
Timeout: 30
Layers:
- !Ref CommonLayer
Environment:
Variables:
CROSS_ACCOUNT_IAM_ROLE_ARN: !GetAtt PhotoOpsCrossAccountIamRole.Arn
Policies:
- Version: "2012-10-17"
Statement:
- Sid: StsAssumeRole
Effect: Allow
Action:
- sts:AssumeRole
Resource: !GetAtt PhotoOpsCrossAccountIamRole.Arn
GetExifCameraData:
Type: AWS::Serverless::Function
Properties:
Description: "Get EXIF camera data"
CodeUri: src/handlers/GetExifCameraData
Handler: function.handler
Runtime: python3.8
MemorySize: 128
Timeout: 3
Layers:
- !Ref CommonLayer
GetExifLensData:
Type: AWS::Serverless::Function
Properties:
Description: "Get EXIF lens data"
CodeUri: src/handlers/GetExifLensData
Handler: function.handler
Runtime: python3.8
MemorySize: 128
Timeout: 3
Layers:
- !Ref CommonLayer
GetExifImageData:
Type: AWS::Serverless::Function
Properties:
Description: "Get EXIF image data"
CodeUri: src/handlers/GetExifImageData
Handler: function.handler
Runtime: python3.8
MemorySize: 128
Timeout: 3
Layers:
- !Ref CommonLayer
GetExifLocationData:
Type: AWS::Serverless::Function
Properties:
Description: "Get EXIF location data"
CodeUri: src/handlers/GetExifLocationData
Handler: function.handler
Runtime: python3.8
MemorySize: 128
Timeout: 3
Layers:
- !Ref CommonLayer
GetFileData:
Type: AWS::Serverless::Function
Properties:
Description: "Get file data"
CodeUri: src/handlers/GetFileData
Handler: function.handler
Runtime: python3.8
MemorySize: 128
Timeout: 3
Layers:
- !Ref CommonLayer
PhotoOpsIngestTopic:
Type: AWS::SNS::Topic
Properties:
TopicName: !Sub "${AWS::StackName}-PhotoOpsIngestTopic"
# FIXME: We should be using something like an external ID to limit who can
# write to this topic.
PhotoOpsIngestTopicPolicy:
Type: AWS::SNS::TopicPolicy
Properties:
PolicyDocument:
Id: "PhotoOpsIngestTopicPolicy"
Version: "2012-10-17"
Statement:
- Sid: "GlobalWrite"
Effect: Allow
Principal:
Service: "s3.amazonaws.com"
Action:
- sns:Publish
Resource: !Ref PhotoOpsIngestTopic
Topics:
- !Ref PhotoOpsIngestTopic
CreateJpegFromRaw:
Type: AWS::Serverless::Function
Properties:
Description: "Create a CreateJpegFromRaw"
CodeUri: src/handlers/CreateJpegFromRaw
Handler: function.handler
Runtime: python3.8
MemorySize: 512
Timeout: 30
Layers:
- !Ref CommonLayer
Environment:
Variables:
PHOTOOPS_S3_BUCKET: !Ref PhotoOpsBucket
CROSS_ACCOUNT_IAM_ROLE_ARN: !GetAtt PhotoOpsCrossAccountIamRole.Arn
Policies:
- Statement:
- Sid: StsAssumeRole
Effect: Allow
Action:
- sts:AssumeRole
Resource: !GetAtt PhotoOpsCrossAccountIamRole.Arn
- Statement:
- Sid: S3PutObject
Effect: "Allow"
Action:
- s3:PutObject
Resource: !Sub "${PhotoOpsBucket.Arn}/*"
DdbSerializer:
Type: AWS::Serverless::Function
Properties:
Description: "Serialize a DDB Document or API item to vice versa"
CodeUri: src/handlers/DdbSerializer
Handler: function.handler
Runtime: python3.8
MemorySize: 128
Timeout: 3
Layers:
- !Ref CommonLayer
PhotoOpsBucket:
Type: AWS::S3::Bucket
PhotoOpsCrossAccountIamRole:
Type: "AWS::IAM::Role"
Properties:
RoleName: !Sub "CrossAccountAccess-${ServiceEnv}"
Path: "/PhotoOpsAI/"
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: "Allow"
Principal:
AWS:
# Anyone in account can assume so long as they have their own
# permission to assume the role.
- !Sub "arn:aws:iam::${AWS::AccountId}:root"
Action:
- "sts:AssumeRole"
Policies:
- PolicyName: "DownloadS3Object"
PolicyDocument:
Version: "2012-10-17"
Statement:
- Sid: "GetS3Object"
Effect: "Allow"
Action:
- "s3:GetObject"
Resource: "arn:aws:s3:::*/*"
- Sid: "ListS3Bucket"
Effect: "Allow"
Action:
- "s3:ListBucket"
Resource: "arn:aws:s3:::*/"
GetExifDataStateMachine:
Type: AWS::Serverless::StateMachine
Properties:
DefinitionUri: src/state-machines/get-exif-data.yaml
DefinitionSubstitutions:
DdbTableName: !Ref DynamoDBTable
GetExifDataArn: !GetAtt GetExifData.Arn
GetExifCameraDataArn: !GetAtt GetExifCameraData.Arn
GetExifImageDataArn: !GetAtt GetExifImageData.Arn
GetExifLensDataArn: !GetAtt GetExifLensData.Arn
GetExifLocationDataArn: !GetAtt GetExifLocationData.Arn
GetFileDataArn: !GetAtt GetFileData.Arn
DdbSerializerArn: !GetAtt DdbSerializer.Arn
Tracing:
Enabled: true
Logging:
IncludeExecutionData: true
Level: ERROR
Destinations:
- CloudWatchLogsLogGroup:
LogGroupArn: !GetAtt GetExifDataLogGroup.Arn
Events:
EventBridgeRule:
Type: EventBridgeRule
Properties:
EventBusName: !Ref EventBus
Pattern:
source: [ "lambda" ]
detail-type: [ "Lambda Function Invocation Result - Success" ]
detail:
requestPayload:
Records:
Sns:
TopicArn: [ !Ref PhotoOpsIngestTopic ]
responsePayload:
Records:
eventSource: [ "aws:s3" ]
# FIXME: Is this all the possible event names?
eventName:
- prefix: "ObjectCreated:"
Policies:
- Statement:
- Effect: Allow
Action:
- "dynamodb:PutItem"
Resource:
- !GetAtt DynamoDBTable.Arn
- Effect: Allow
Action:
- "lambda:InvokeFunction"
Resource:
- !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:${AWS::StackName}-*"
- Effect: Allow
Action:
- logs:CreateLogDelivery
- logs:GetLogDelivery
- logs:UpdateLogDelivery
- logs:DeleteLogDelivery
- logs:ListLogDeliveries
- logs:PutResourcePolicy
- logs:DescribeResourcePolicies
- logs:DescribeLogGroups
Resource: '*'
- Effect: Allow
Action:
- logs:CreateLogStream
- logs:DescribeLogStream
- logs:PutLogEvents
Resource:
- !GetAtt GetExifDataLogGroup.Arn
GetExifDataLogGroup:
Type: AWS::Logs::LogGroup
Properties:
LogGroupName: !Sub '/aws/step-functions/GetExifData-${ServiceEnv}'
RetentionInDays: 7
CreateJpegStateMachine:
Type: AWS::Serverless::StateMachine
Properties:
DefinitionUri: src/state-machines/create-jpeg.json
DefinitionSubstitutions:
EventBusName: !Ref EventBus
DdbTableName: !Ref DynamoDBTable
CreateJpegFromRawName: !Ref CreateJpegFromRaw
Tracing:
Enabled: true
Logging:
IncludeExecutionData: true
Level: ERROR
Destinations:
- CloudWatchLogsLogGroup:
LogGroupArn: !GetAtt CreateJpegLogGroup.Arn
Events:
EventBridgeRule:
Type: EventBridgeRule
Properties:
EventBusName: !Ref EventBus
InputPath: "$.detail"
Pattern:
account:
- !Ref AWS::AccountId
detail-type:
- "PhotoOps::CreateJpeg::Invoke"
detail:
s3_bucket:
- exists: true
s3_object_key:
- exists: true
Policies:
- Statement:
- Effect: Allow
Action:
- "states:SendTaskSuccess"
Resource:
- '*'
- Effect: Allow
Action:
- "events:PutEvents"
Resource:
- !GetAtt EventBus.Arn
- Effect: Allow
Action:
- "lambda:InvokeFunction"
Resource:
- !GetAtt CreateJpegFromRaw.Arn
- Effect: Allow
Action:
- "eventbridge:PutEvents"
Resource:
- !GetAtt EventBus.Arn
- Effect: Allow
Action:
- logs:CreateLogDelivery
- logs:GetLogDelivery
- logs:UpdateLogDelivery
- logs:DeleteLogDelivery
- logs:ListLogDeliveries
- logs:PutResourcePolicy
- logs:DescribeResourcePolicies
- logs:DescribeLogGroups
Resource: '*'
- Effect: Allow
Action:
- logs:CreateLogStream
- logs:DescribeLogStream
- logs:PutLogEvents
Resource:
- !GetAtt CreateJpegLogGroup.Arn
CreateJpegLogGroup:
Type: AWS::Logs::LogGroup
Properties:
LogGroupName: !Sub '/aws/step-functions/CreateJpeg-${ServiceEnv}'
RetentionInDays: 7
# FIXME: We should add a "Serialize DDB event function to this."
DdbOpsStateMachine:
Type: AWS::Serverless::StateMachine
Properties:
DefinitionUri: src/state-machines/ddb-ops.yaml
DefinitionSubstitutions:
DdbTableName: !Ref DynamoDBTable
UpdateExpression: '$.UpdateExpression'
ExpressionAttributeNames: '$.ExpressionAttributeNames'
ExpressionAttributeValues: '$.ExpressionAttributeValues'
DdbSerializerArn: !GetAtt DdbSerializer.Arn
Tracing:
Enabled: true
Logging:
IncludeExecutionData: true
Level: ERROR
Destinations:
- CloudWatchLogsLogGroup:
LogGroupArn: !GetAtt DdbOpsLogGroup.Arn
Events:
DdbOp:
Type: EventBridgeRule
Properties:
EventBusName: !Ref EventBus
Pattern:
detail-type:
- prefix: "AWS::DynamoDB"
# DdbBatchOp:
# Type: EventBridgeRule
# Properties:
# EventBusName: !Ref EventBus
# Pattern:
# detail-type:
# - prefix: "AWS::DynamoDB::Batch"
# detail:
# RequestItems:
# "!Ref DynamoDBTable":
# - exists: true
Policies:
- Statement:
- Effect: Allow
Action:
- "states:SendTaskSuccess"
Resource:
- '*'
- Effect: Allow
Action:
- "dynamodb:PutItem"
- "dynamodb:GetItem"
- "dynamodb:UpdateItem"
- "dynamodb:DeleteItem"
Resource:
- !GetAtt DynamoDBTable.Arn
- Effect: Allow
Action:
- logs:CreateLogDelivery
- logs:GetLogDelivery
- logs:UpdateLogDelivery
- logs:DeleteLogDelivery
- logs:ListLogDeliveries
- logs:PutResourcePolicy
- logs:DescribeResourcePolicies
- logs:DescribeLogGroups
Resource: '*'
- Effect: Allow
Action:
- logs:CreateLogStream
- logs:DescribeLogStream
- logs:PutLogEvents
Resource:
- !GetAtt DdbOpsLogGroup.Arn
- Effect: Allow
Action:
- lambda:InvokeFunction
Resource:
- !GetAtt DdbSerializer.Arn
DdbOpsLogGroup:
Type: AWS::Logs::LogGroup
Properties:
LogGroupName: !Sub '/aws/step-functions/DdbOps-${ServiceEnv}'
RetentionInDays: 7
# FIXME: Need a DLQ
EventBus:
Type: AWS::Events::EventBus
Properties:
Name: !Sub "${ServiceName}-${ServiceEnv}"
EventBusLogGroup:
Type: AWS::Logs::LogGroup
Properties:
LogGroupName: !Sub "/aws/events/${EventBus}/all"
RetentionInDays: 7
EventBusLogGroupRule:
Type: AWS::Events::Rule
Properties:
Description: "Log all events to CloudWatch"
EventBusName: !Ref EventBus
EventPattern:
account:
- !Ref AWS::AccountId
Targets:
- Arn: !Sub "arn:aws:logs:${AWS::Region}:${AWS::AccountId}:log-group:${EventBusLogGroup}"
Id: "EventBusLogGroup"
# Grant eventBus ability to deliver logs to CW.
#
# ref: https://github.com/aws-cloudformation/cloudformation-coverage-roadmap/issues/351#issuecomment-887045751
LogGroupForEventsPolicy:
Type: AWS::Logs::ResourcePolicy
Properties:
PolicyName: !Sub "${AWS::StackName}-${ServiceEnv}-EventBridgeToCWLogsPolicy"
PolicyDocument: !Sub
- >
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "EventBridgetoCWLogsPolicy",
"Effect": "Allow",
"Principal": {
"Service": [
"delivery.logs.amazonaws.com",
"events.amazonaws.com"
]
},
"Action": [
"logs:CreateLogStream",
"logs:PutLogEvents"
],
"Resource": [
"${logArn}"
],
"Condition": {
"ArnEquals": {"aws:SourceArn": "${ruleArn}"}
}
}
]
}
- { logArn: !GetAtt EventBusLogGroup.Arn, ruleArn: !GetAtt EventBusLogGroupRule.Arn}
DynamoDBTable:
Type: AWS::DynamoDB::Table
# NOTE: Retain data by default
DeletionPolicy: Retain
UpdateReplacePolicy: Retain
Properties:
AttributeDefinitions:
- AttributeName: "pk"
AttributeType: "S"
- AttributeName: "sk"
AttributeType: "S"
KeySchema:
- AttributeName: "pk"
KeyType: "HASH"
- AttributeName: "sk"
KeyType: "RANGE"
TimeToLiveSpecification:
AttributeName: "ttl"
Enabled: true
BillingMode: "PAY_PER_REQUEST"
AppSyncGqlApi:
Type: "AWS::AppSync::GraphQLApi"
Properties:
Name: !Ref AWS::StackName
# FIXME: Using until we finally have something permanent built.
AuthenticationType: API_KEY
LogConfig:
CloudWatchLogsRoleArn: !GetAtt AppSyncGqlCwLogsIamRole.Arn
FieldLogLevel: ALL
# FIXME: Appears to be an issue on AWS side with servce role being created behind
# the scenes.
# ref. https://github.com/aws/aws-cdk/issues/16598
#XrayEnabled: true
AppSyncGqlIamRole:
Type: "AWS::IAM::Role"
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: "Allow"
Principal:
Service: appsync.amazonaws.com
Action:
- "sts:AssumeRole"
Policies:
- PolicyName: "DynamoDB"
PolicyDocument:
Version: "2012-10-17"
Statement:
- Sid: "DdbOps"
Effect: "Allow"
Action:
- "dynamodb:*GetItem"
Resource: !GetAtt DynamoDBTable.Arn
AppSyncGqlCwLogsIamRole:
Type: "AWS::IAM::Role"
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: "Allow"
Principal:
Service: appsync.amazonaws.com
Action:
- "sts:AssumeRole"
Policies:
- PolicyName: "CwLogs"
PolicyDocument:
Version: "2012-10-17"
Statement:
- Sid: "CwLogDelivery"
Effect: "Allow"
Action:
- "logs:CreateLogGroup"
- "logs:CreateLogStream"
- "logs:PutLogEvents"
Resource: "*"
# FIXME: Using until we finally have something permanent built.
AppSyncGqlApiKey:
Type: AWS::AppSync::ApiKey
Properties:
Description:
Fn::Sub:
- "API key for ${GraphQLApiApiId} at ${GraphQLApiGraphQLUrl}"
- GraphQLApiApiId: !GetAtt AppSyncGqlApi.ApiId
GraphQLApiGraphQLUrl: !GetAtt AppSyncGqlApi.GraphQLUrl
ApiId: !GetAtt AppSyncGqlApi.ApiId
# FIXME: 365 days; will update the key on every deploy. This whole thing is not ideal.
Expires: 1689884857
AppSyncGqlSchema:
Type: AWS::AppSync::GraphQLSchema
Properties:
ApiId: !GetAtt AppSyncGqlApi.ApiId
DefinitionS3Location: schema.graphql
AppSyncDdbDataSource:
Type: "AWS::AppSync::DataSource"
Properties:
ApiId: !GetAtt AppSyncGqlApi.ApiId
Name: DdbTable
Description: !Sub "${DynamoDBTable} data source"
Type: AMAZON_DYNAMODB
ServiceRoleArn: !GetAtt AppSyncGqlIamRole.Arn
DynamoDBConfig:
AwsRegion: !Ref AWS::Region
TableName: !Ref DynamoDBTable
QueryPhotoCameraDataResolver:
Type: AWS::AppSync::Resolver
DependsOn: AppSyncGqlSchema
Properties:
ApiId: !GetAtt AppSyncGqlApi.ApiId
TypeName: Query
FieldName: photoCameraData
DataSourceName: !GetAtt AppSyncDdbDataSource.Name
RequestMappingTemplate: |
{
"version" : "2017-02-28",
"operation" : "GetItem",
"key" : {
"pk" : $util.dynamodb.toDynamoDBJson($ctx.args.id),
"sk": $util.dynamodb.toDynamoDBJson("camera#v0")
}
}
ResponseMappingTemplate: |
$util.qr($ctx.result.put("id", "$ctx.result.pk"))
$util.qr($ctx.result.remove("pk"))
$util.qr($ctx.result.remove("sk"))
$utils.toJson($ctx.result)
# FIXME: Not sure how we'll model this schema well with graphql
#QueryPhotoExifDataResolver:
# Type: AWS::AppSync::Resolver
# DependsOn: AppSyncGqlSchema
# Properties:
# ApiId: !GetAtt AppSyncGqlApi.ApiId
# TypeName: Query
# FieldName: photoExifData
# DataSourceName: !GetAtt AppSyncDdbDataSource.Name
# RequestMappingTemplate: |
# {
# "version" : "2017-02-28",
# "operation" : "GetItem",
# "key" : {
# "pk" : $util.dynamodb.toDynamoDBJson($ctx.args.id),
# "sk": $util.dynamodb.toDynamoDBJson("exif#v0")
# }
# }
# ResponseMappingTemplate: |
# $util.qr($ctx.result.put("id", "$ctx.result.pk"))
# $util.qr($ctx.result.remove("pk"))
# $util.qr($ctx.result.remove("sk"))
# $utils.toJson($ctx.result)
QueryPhotoFileDataResolver:
Type: AWS::AppSync::Resolver
DependsOn: AppSyncGqlSchema
Properties:
ApiId: !GetAtt AppSyncGqlApi.ApiId
TypeName: Query
FieldName: photoFileData
DataSourceName: !GetAtt AppSyncDdbDataSource.Name
RequestMappingTemplate: |
{
"version" : "2017-02-28",
"operation" : "GetItem",
"key" : {
"pk" : $util.dynamodb.toDynamoDBJson($ctx.args.id),
"sk": $util.dynamodb.toDynamoDBJson("file#v0")
}
}
ResponseMappingTemplate: |
$util.qr($ctx.result.put("id", "$ctx.result.pk"))
$util.qr($ctx.result.remove("pk"))
$util.qr($ctx.result.remove("sk"))
$utils.toJson($ctx.result)
QueryPhotoImageDataResolver:
Type: AWS::AppSync::Resolver
DependsOn: AppSyncGqlSchema
Properties:
ApiId: !GetAtt AppSyncGqlApi.ApiId
TypeName: Query
FieldName: photoImageData
DataSourceName: !GetAtt AppSyncDdbDataSource.Name
RequestMappingTemplate: |
{
"version" : "2017-02-28",
"operation" : "GetItem",
"key" : {
"pk" : $util.dynamodb.toDynamoDBJson($ctx.args.id),
"sk": $util.dynamodb.toDynamoDBJson("image#v0")
}
}
ResponseMappingTemplate: |
$util.qr($ctx.result.put("id", "$ctx.result.pk"))
$util.qr($ctx.result.remove("pk"))
$util.qr($ctx.result.remove("sk"))
$utils.toJson($ctx.result)
QueryPhotoLensDataResolver:
Type: AWS::AppSync::Resolver
DependsOn: AppSyncGqlSchema
Properties:
ApiId: !GetAtt AppSyncGqlApi.ApiId
TypeName: Query
FieldName: photoLensData
DataSourceName: !GetAtt AppSyncDdbDataSource.Name
RequestMappingTemplate: |
{
"version" : "2017-02-28",
"operation" : "GetItem",
"key" : {
"pk" : $util.dynamodb.toDynamoDBJson($ctx.args.id),
"sk": $util.dynamodb.toDynamoDBJson("lens#v0")
}
}
ResponseMappingTemplate: |
$util.qr($ctx.result.put("id", "$ctx.result.pk"))
$util.qr($ctx.result.remove("pk"))
$util.qr($ctx.result.remove("sk"))
$utils.toJson($ctx.result)
QueryPhotoLocationDataResolver:
Type: AWS::AppSync::Resolver
DependsOn: AppSyncGqlSchema
Properties:
ApiId: !GetAtt AppSyncGqlApi.ApiId
TypeName: Query
FieldName: photoLocationData
DataSourceName: !GetAtt AppSyncDdbDataSource.Name
RequestMappingTemplate: |
{
"version" : "2017-02-28",
"operation" : "GetItem",
"key" : {
"pk" : $util.dynamodb.toDynamoDBJson($ctx.args.id),
"sk": $util.dynamodb.toDynamoDBJson("location#v0")
}
}
ResponseMappingTemplate: |
$util.qr($ctx.result.put("id", "$ctx.result.pk"))
$util.qr($ctx.result.remove("pk"))
$util.qr($ctx.result.remove("sk"))
$utils.toJson($ctx.result)
# For CloudWatch Alarms
CloudWatchTopic:
Type: AWS::SNS::Topic
# SSM Parameters
PhotoOpsIngestTopicArn:
Type: AWS::SSM::Parameter
Properties:
Name: !Sub "/PhotoOpsAI/${ServiceName}/${ServiceEnv}/PhotoOpsIngestTopicArn"
Type: String
Description: "Ingest SNS topic ARN"
Value: !Ref PhotoOpsIngestTopic
PhotoOpsBucketName:
Type: AWS::SSM::Parameter
Properties:
Name: !Sub "/PhotoOpsAI/${ServiceName}/${ServiceEnv}/PhotoOpsBucketName"
Type: String
Description: "Name of PhotoOps image bucket"
Value: !Ref PhotoOpsBucket
DynamoDBTableName:
Type: AWS::SSM::Parameter
Properties:
Name: !Sub "/PhotoOpsAI/${ServiceName}/${ServiceEnv}/DynamoDBTableName"
Type: String
Description: "DDB table name"
Value: !Ref DynamoDBTable
DynamoDBTableArn:
Type: AWS::SSM::Parameter
Properties:
Name: !Sub "/PhotoOpsAI/${ServiceName}/${ServiceEnv}/DynamoDBTableArn"
Type: String
Description: "DDB table ARN"
Value: !GetAtt DynamoDBTable.Arn
EventBusArn:
Type: AWS::SSM::Parameter
Properties:
Name: !Sub "/PhotoOpsAI/${ServiceName}/${ServiceEnv}/EventBusArn"
Type: String
Description: "Event Bus ARN"
Value: !GetAtt EventBus.Arn
EventBusName:
Type: AWS::SSM::Parameter
Properties:
Name: !Sub "/PhotoOpsAI/${ServiceName}/${ServiceEnv}/EventBusName"
Type: String
Description: "Event Bus Name"
Value: !Ref EventBus
CloudWatchTopicArn:
Type: AWS::SSM::Parameter
Properties:
Name: !Sub "/PhotoOpsAI/${ServiceName}/${ServiceEnv}/CloudWatchTopicArn"
Type: String
Description: "CloudWatch SNS Topic ARN"
Value: !Ref CloudWatchTopic
AppSyncGqlApiUrl:
Type: AWS::SSM::Parameter
Properties:
Name: !Sub "/PhotoOpsAI/${ServiceName}/${ServiceEnv}/AppSyncGqlApiUrl"
Type: String
Description: "AppSync API URL"
Value: !GetAtt AppSyncGqlApi.GraphQLUrl
AppSyncGqlApiKeyValue:
Type: AWS::SSM::Parameter
Properties:
Name: !Sub "/PhotoOpsAI/${ServiceName}/${ServiceEnv}/AppSyncGqlApiKeyValue"
Type: String
Description: "AppSync API key"
Value: !GetAtt AppSyncGqlApiKey.ApiKey
Outputs:
PhotoOpsIngestTopicArn:
Description: "ARN of PhotoOps Ingest topic ARN"
Value: !Ref PhotoOpsIngestTopic
DynamoDBTableName:
Description: "Name of DynamoDB table"
Value: !Ref DynamoDBTable
EventBusArn:
Description: "ARN of event bus"
Value: !GetAtt EventBus.Arn
EventBusName:
Description: "Name of event bus"
Value: !Ref EventBus
CloudWatchTopicArn:
Description: "ARN of CloudWatch topic"
Value: !Ref CloudWatchTopic
AppSyncGqlApiUrl:
Description: "AppSync API URL"
Value: !GetAtt AppSyncGqlApi.GraphQLUrl
AppSyncGqlApiKeyValue:
Description: "AppSync API key"
Value: !GetAtt AppSyncGqlApiKey.ApiKey