-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcreate-mlops-pipeline-infrastructure.yaml
1075 lines (1011 loc) · 41.3 KB
/
create-mlops-pipeline-infrastructure.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
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
AWSTemplateFormatVersion: '2010-09-09'
Description: MLOPS Pipeline - Stack
# Defining the common parameters to use across the yaml file.
Parameters:
DynamoDBTableName:
Type: String
Default: model_metrics_cf
SNSTopicName:
Type: String
Default: mlops-model-metrics-broadcast-topic-cf
S3BucketName:
Type: String
Default: mlops-model-storage-cf
# Lambda layers ARN by KLayers
AWSPandasLambdaLayerARN:
Type: String
Default: arn:aws:lambda:us-east-1:336392948345:layer:AWSSDKPandas-Python311:3
KLayersPillowLambdaLayerARN:
Type: String
Default: arn:aws:lambda:us-east-1:770693421928:layer:Klayers-p311-Pillow:2
KLayersNumpyLambdaLayerARN:
Type: String
Default: arn:aws:lambda:us-east-1:770693421928:layer:Klayers-p311-numpy:3
# Defining the AWS resources required for MLOPS pipeline
Resources:
# Create ECR repository to hold training job docker image
ECRRepositorySagemakerTraining:
Type: AWS::ECR::Repository
Properties:
RepositoryName: sagemaker-images-cf
# Create DynamoDB Table with specified Partition Key
DynamoDBTable:
Type: AWS::DynamoDB::Table
Properties:
TableName: !Ref DynamoDBTableName
AttributeDefinitions:
- AttributeName: model_id
AttributeType: S
KeySchema:
- AttributeName: model_id
KeyType: HASH
ProvisionedThroughput:
ReadCapacityUnits: 1
WriteCapacityUnits: 1
BillingMode: PROVISIONED
# Create SNS topic to send Email notifications to subscribers
SNSTopic:
Type: AWS::SNS::Topic
Properties:
DisplayName: mlops-model-training-pipeline-status-notification-cf
TopicName: !Ref SNSTopicName
# Create S3 bucket to hold training data, model artifacts, user prediction images, and metrics json files.
S3Bucket:
Type: AWS::S3::Bucket
Properties:
BucketName: !Ref S3BucketName
################################################################
##### Create Lambdas ###########################################
################################################################
LambdaCompareModelStagedMetrics:
Type: AWS::Lambda::Function
Properties:
FunctionName: mlops-compare-staged-model-metrics-cf
Description: "Lambda function for comparing staged and deployed model metrics, and sending a SNS email notification to the subscribers."
Runtime: python3.11
Handler: mlops-compare-staged-model-metrics.lambda_handler
Role: arn:aws:iam::<ACCOUNT_ID>:role/<ROLE_NAME>
Timeout: 30
Code:
S3Bucket: mlops-cloud-formation-artifacts
S3Key: lambda-function-codebase/mlops-compare-staged-model-metrics.zip
Environment:
Variables:
MLOPS_DYNAMODB_TABLE: !Ref DynamoDBTableName
MLOPS_SNS_TOPIC_NAME: !Ref SNSTopicName
Layers:
- !Ref AWSPandasLambdaLayerARN # AWS-provided layer's ARN
LambdaDeployStagedModel:
Type: AWS::Lambda::Function
Properties:
FunctionName: mlops-deploy-staged-model-cf
Description: "Lambda function to deploy the staged model to sagemaker endpoint."
Runtime: python3.11
Handler: mlops-deploy-staged-model.lambda_handler
Role: arn:aws:iam::<ACCOUNT_ID>:role/<ROLE_NAME>
Timeout: 30
Code:
S3Bucket: mlops-cloud-formation-artifacts
S3Key: lambda-function-codebase/mlops-deploy-staged-model.zip
Environment:
Variables:
MLOPS_DYNAMODB_TABLE: !Ref DynamoDBTableName
MLOPS_SNS_TOPIC_NAME: !Ref SNSTopicName
MLOPS_S3_BUCKET_NAME: !Ref S3BucketName
LambdaGetLatestModelMetrics:
Type: AWS::Lambda::Function
Properties:
FunctionName: mlops-get-latest-staged-model-metrics-cf
Description: "Lambda function to retrieve the latest staged model metrics from DynamoDB."
Runtime: python3.11
Handler: mlops-get-latest-staged-model-metrics.lambda_handler
Role: arn:aws:iam::<ACCOUNT_ID>:role/<ROLE_NAME>
Timeout: 30
Code:
S3Bucket: mlops-cloud-formation-artifacts
S3Key: lambda-function-codebase/mlops-get-latest-staged-model-metrics.zip
Environment:
Variables:
MLOPS_DYNAMODB_TABLE: !Ref DynamoDBTableName
LambdaGetPrediction:
Type: AWS::Lambda::Function
Properties:
FunctionName: mlops-get-prediction-cf
Description: "Lambda function to perform inference on a user's image stored in S3 bucket directory."
Runtime: python3.11
Handler: mlops-get-prediction.lambda_handler
Role: arn:aws:iam::<ACCOUNT_ID>:role/<ROLE_NAME>
Timeout: 30
Code:
S3Bucket: mlops-cloud-formation-artifacts
S3Key: lambda-function-codebase/mlops-get-prediction.zip
Environment:
Variables:
MLOPS_S3_BUCKET_NAME: !Ref S3BucketName
Layers:
- !Ref KLayersPillowLambdaLayerARN # KLayers ARN
- !Ref KLayersNumpyLambdaLayerARN # KLayers ARN
LambdaGetPredictionResult:
Type: AWS::Lambda::Function
Properties:
FunctionName: mlops-get-prediction-results-cf
Description: "Lambda function to perform inference on a user's image using base64 format of image."
Runtime: python3.11
Handler: mlops-get-prediction-results.lambda_handler
Role: arn:aws:iam::<ACCOUNT_ID>:role/<ROLE_NAME>
Timeout: 30
Code:
S3Bucket: mlops-cloud-formation-artifacts
S3Key: lambda-function-codebase/mlops-get-prediction-results.zip
LambdaImagePreprocessingBeforePrediction:
Type: AWS::Lambda::Function
Properties:
FunctionName: mlops-image-preprocessing-before-prediction-cf
Description: "Lambda function to perform image pre-processing on the user's image uplaoded to S3."
Runtime: python3.11
Handler: mlops-image-preprocessing-before-prediction.lambda_handler
Role: arn:aws:iam::<ACCOUNT_ID>:role/<ROLE_NAME>
Timeout: 30
Code:
S3Bucket: mlops-cloud-formation-artifacts
S3Key: lambda-function-codebase/mlops-image-preprocessing-before-prediction.zip
Environment:
Variables:
MLOPS_S3_BUCKET_NAME: !Ref S3BucketName
Layers:
- !Ref KLayersPillowLambdaLayerARN # KLayers ARN
- !Ref KLayersNumpyLambdaLayerARN # KLayers ARN
LambdaInitiateModelTrainingJob:
Type: AWS::Lambda::Function
Properties:
FunctionName: mlops-initiate-model-training-cf
Description: "Lambda function to initiate a sagemaker training job at the given timestamp."
Runtime: python3.11
Handler: mlops-initiate-model-training.lambda_handler
Role: arn:aws:iam::<ACCOUNT_ID>:role/<ROLE_NAME>
Timeout: 30
Code:
S3Bucket: mlops-cloud-formation-artifacts
S3Key: lambda-function-codebase/mlops-initiate-model-training.zip
Environment:
Variables:
MLOPS_S3_BUCKET_NAME: !Ref S3BucketName
MLOPS_ECR_CON_URL: !Sub "${AWS::AccountId}.dkr.ecr.${AWS::Region}.amazonaws.com/${ECRRepositorySagemakerTraining}:latest"
MLOPS_DYNAMODB_TABLE: !Ref DynamoDBTableName
LambdaNotifyModelDeploymentStatus:
Type: AWS::Lambda::Function
Properties:
FunctionName: mlops-notify-model-deployment-status-cf
Description: "Lambda function to send a email SNS notification to subscribers about model deployed succesfully."
Runtime: python3.11
Handler: mlops-notify-model-deployment-status.lambda_handler
Role: arn:aws:iam::<ACCOUNT_ID>:role/<ROLE_NAME>
Timeout: 30
Code:
S3Bucket: mlops-cloud-formation-artifacts
S3Key: lambda-function-codebase/mlops-notify-model-deployment-status.zip
Environment:
Variables:
MLOPS_S3_BUCKET_NAME: !Ref S3BucketName
MLOPS_DYNAMODB_TABLE: !Ref DynamoDBTableName
SNSTopicName: !Ref SNSTopicName
LambdaRejectStagedModel:
Type: AWS::Lambda::Function
Properties:
FunctionName: mlops-reject-staged-model-cf
Description: "Lambda function to reject the latest staged model in S3, and DynamoDB."
Runtime: python3.11
Handler: mlops-reject-staged-model.lambda_handler
Role: arn:aws:iam::<ACCOUNT_ID>:role/<ROLE_NAME>
Timeout: 30
Code:
S3Bucket: mlops-cloud-formation-artifacts
S3Key: lambda-function-codebase/mlops-reject-staged-model.zip
Environment:
Variables:
MLOPS_S3_BUCKET_NAME: !Ref S3BucketName
MLOPS_DYNAMODB_TABLE: !Ref DynamoDBTableName
SNSTopicName: !Ref SNSTopicName
LambdaSubscribeToPipelineNotifications:
Type: AWS::Lambda::Function
Properties:
FunctionName: mlops-subscribe-to-pipeline-notifications-cf
Description: "Lambda function to subscribe an email to the mlops SNS topic."
Runtime: python3.11
Handler: mlops-subscribe-to-pipeline-notifications.lambda_handler
Role: arn:aws:iam::<ACCOUNT_ID>:role/<ROLE_NAME>
Timeout: 30
Code:
S3Bucket: mlops-cloud-formation-artifacts
S3Key: lambda-function-codebase/mlops-subscribe-to-pipeline-notifications.zip
Environment:
Variables:
SNSTopicName: !Ref SNSTopicName
LambdaUploadImageToS3Bucket:
Type: AWS::Lambda::Function
Properties:
FunctionName: mlops-upload-image-to-s3-for-inference-cf
Description: "Lambda function to uplaod user's image to S3 for inference."
Runtime: python3.11
Handler: mlops-upload-image-to-s3-for-inference.lambda_handler
Role: arn:aws:iam::<ACCOUNT_ID>:role/<ROLE_NAME>
Timeout: 30
Code:
S3Bucket: mlops-cloud-formation-artifacts
S3Key: lambda-function-codebase/mlops-upload-image-to-s3-for-inference.zip
Environment:
Variables:
MLOPS_S3_BUCKET_NAME: !Ref S3BucketName
################################################################
##### Create Event Trigger Rules ###############################
################################################################
EventRuleSageMakerTrainingJobStateChange:
Type: AWS::Events::Rule
Properties:
Description: "Trigger Lambda on SageMaker Training Job Completion"
EventBusName: default
EventPattern:
source:
- aws.sagemaker
detail-type:
- SageMaker Training Job State Change
detail:
TrainingJobStatus:
- Completed
Name: trigger-lambda-staged-metric-comparison-1-cf
State: ENABLED
Targets:
- Id: "compareStagedModelLambda"
Arn: !GetAtt LambdaCompareModelStagedMetrics.Arn
# Give permission for lambda invocation for the given rule
LambdaInvokePermissionSagemakerModelComparison:
Type: AWS::Lambda::Permission
Properties:
FunctionName: !GetAtt LambdaCompareModelStagedMetrics.Arn
Action: lambda:InvokeFunction
Principal: sagemaker.amazonaws.com
SourceAccount: !Ref 'AWS::AccountId'
SourceArn: !GetAtt EventRuleSageMakerTrainingJobStateChange.Arn
EventRuleSageMakerEndpointStateChange:
Type: AWS::Events::Rule
Properties:
Name: notify-model-endpoint-deployment-status-1-cf
Description: "Notify Lambda on SageMaker Endpoint State Change"
EventBusName: default
EventPattern:
source:
- aws.sagemaker
detail-type:
- SageMaker Endpoint State Change
State: ENABLED
Targets:
- Id: "NotifyModelDeploymentLambda"
Arn: !GetAtt LambdaNotifyModelDeploymentStatus.Arn
# Give permission for lambda invocation for the given rule
LambdaInvokePermissionSagemakerModelDeployment:
Type: AWS::Lambda::Permission
Properties:
FunctionName: !GetAtt LambdaNotifyModelDeploymentStatus.Arn
Action: lambda:InvokeFunction
Principal: sagemaker.amazonaws.com
SourceAccount: !Ref 'AWS::AccountId'
SourceArn: !GetAtt EventRuleSageMakerEndpointStateChange.Arn
# Create a event which performs prediction when the image is uploaded to S3
EventRuleS3ObjectCreated:
Type: AWS::Events::Rule
Properties:
Name: image-prediction-upload-repository-1-cf
Description: "Trigger Lambda on S3 Object Creation in 'user-uploaded-images' prefix"
EventBusName: default
EventPattern:
source:
- aws.s3
detail:
eventSource:
- s3.amazonaws.com
eventName:
- "s3:ObjectCreated:*"
requestParameters:
bucketName:
- !Ref S3BucketName
key:
- "user-uploaded-images/*"
State: ENABLED
Targets:
- Id: "ImagePreprocessBeforePredictionLambda"
Arn: !GetAtt LambdaImagePreprocessingBeforePrediction.Arn
# Give permission for lambda invocation for the given rule
LambdaInvokePermission:
Type: AWS::Lambda::Permission
Properties:
FunctionName: !GetAtt LambdaImagePreprocessingBeforePrediction.Arn
Action: lambda:InvokeFunction
Principal: s3.amazonaws.com
SourceAccount: !Ref 'AWS::AccountId'
SourceArn: !Sub 'arn:aws:s3:::${S3BucketName}'
################################################################
##### Create API Gateway integrated with Lambda ################
################################################################
APIGateway:
Type: AWS::ApiGateway::RestApi
Properties:
Name: mlops-pipeline-cf
Description: mlops pipeline API Gateway
EndpointConfiguration:
Types:
- REGIONAL
# Specify permission to API Gateway to invoke lamdba function
APILambdaPermissionAcceptStagedModel:
Type: "AWS::Lambda::Permission"
Properties:
FunctionName: !Ref LambdaDeployStagedModel
Action: "lambda:InvokeFunction"
Principal: "apigateway.amazonaws.com"
SourceArn: !Sub "arn:aws:execute-api:${AWS::Region}:${AWS::AccountId}:${APIGateway}/*/*"
DependsOn: LambdaDeployStagedModel
# Create API Resource
APIResourceAcceptStagedModel:
Type: AWS::ApiGateway::Resource
Properties:
RestApiId: !Ref APIGateway
ParentId: !GetAtt APIGateway.RootResourceId
PathPart: accept-staged-model
# Create API Method : POST
APIAcceptStagedModel:
Type: AWS::ApiGateway::Method
Properties:
RestApiId: !Ref APIGateway
ResourceId: !Ref APIResourceAcceptStagedModel
HttpMethod: POST
AuthorizationType: NONE
MethodResponses:
- StatusCode: "200"
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: true
method.response.header.Access-Control-Allow-Methods: true
method.response.header.Access-Control-Allow-Origin: true
Integration:
IntegrationHttpMethod: POST
Type: AWS
IntegrationResponses:
- StatusCode: 200
ResponseTemplates:
application/json: $input.json('$')
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: "'Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token'"
method.response.header.Access-Control-Allow-Methods: "'GET,POST,PUT,DELETE,OPTIONS'"
method.response.header.Access-Control-Allow-Origin: "'*'"
Uri: !Sub arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${LambdaDeployStagedModel.Arn}/invocations
DependsOn:
- LambdaDeployStagedModel
- APILambdaPermissionAcceptStagedModel
# Create API Method : OPTIONS
OptionsMethodAcceptStagedModel:
Type: AWS::ApiGateway::Method
Properties:
AuthorizationType: NONE
RestApiId: !Ref APIGateway
ResourceId: !Ref APIResourceAcceptStagedModel
HttpMethod: OPTIONS
Integration:
IntegrationResponses:
- StatusCode: 200
ResponseParameters:
"method.response.header.Access-Control-Allow-Headers": "'Content-Type,X-Amz-Date,Authorization,X-Api-Key'"
"method.response.header.Access-Control-Allow-Methods": "'GET,POST,PUT,DELETE'"
"method.response.header.Access-Control-Allow-Origin": "'*'"
ResponseTemplates:
"application/json": ""
PassthroughBehavior: WHEN_NO_MATCH
RequestTemplates:
"application/json": '{"statusCode": 200}'
Type: MOCK
MethodResponses:
- StatusCode: 200
ResponseParameters:
"method.response.header.Access-Control-Allow-Headers": true
"method.response.header.Access-Control-Allow-Methods": true
"method.response.header.Access-Control-Allow-Origin": true
ResponseModels:
"application/json": "Empty"
# Specify permission to API Gateway to invoke lamdba function
APILambdaPermissionCompareModels:
Type: "AWS::Lambda::Permission"
Properties:
FunctionName: !Ref LambdaCompareModelStagedMetrics
Action: "lambda:InvokeFunction"
Principal: "apigateway.amazonaws.com"
SourceArn: !Sub "arn:aws:execute-api:${AWS::Region}:${AWS::AccountId}:${APIGateway}/*/*"
DependsOn: LambdaCompareModelStagedMetrics
# Create API Resource
APIResourceCompareModels:
Type: AWS::ApiGateway::Resource
Properties:
RestApiId: !Ref APIGateway
ParentId: !GetAtt APIGateway.RootResourceId
PathPart: compare-models
# Create API Method : POST
APICompareModels:
Type: AWS::ApiGateway::Method
Properties:
RestApiId: !Ref APIGateway
ResourceId: !Ref APIResourceCompareModels
HttpMethod: POST
AuthorizationType: NONE
MethodResponses:
- StatusCode: "200"
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: true
method.response.header.Access-Control-Allow-Methods: true
method.response.header.Access-Control-Allow-Origin: true
Integration:
IntegrationHttpMethod: POST
Type: AWS
IntegrationResponses:
- StatusCode: 200
ResponseTemplates:
application/json: $input.json('$')
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: "'Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token'"
method.response.header.Access-Control-Allow-Methods: "'GET,POST,PUT,DELETE,OPTIONS'"
method.response.header.Access-Control-Allow-Origin: "'*'"
Uri: !Sub arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${LambdaCompareModelStagedMetrics.Arn}/invocations
DependsOn:
- LambdaCompareModelStagedMetrics
- APILambdaPermissionCompareModels
# Create API Method : OPTIONS
OptionsCompareModels:
Type: AWS::ApiGateway::Method
Properties:
AuthorizationType: NONE
RestApiId: !Ref APIGateway
ResourceId: !Ref APIResourceCompareModels
HttpMethod: OPTIONS
Integration:
IntegrationResponses:
- StatusCode: 200
ResponseParameters:
"method.response.header.Access-Control-Allow-Headers": "'Content-Type,X-Amz-Date,Authorization,X-Api-Key'"
"method.response.header.Access-Control-Allow-Methods": "'GET,POST,PUT,DELETE'"
"method.response.header.Access-Control-Allow-Origin": "'*'"
ResponseTemplates:
"application/json": ""
PassthroughBehavior: WHEN_NO_MATCH
RequestTemplates:
"application/json": '{"statusCode": 200}'
Type: MOCK
MethodResponses:
- StatusCode: 200
ResponseParameters:
"method.response.header.Access-Control-Allow-Headers": true
"method.response.header.Access-Control-Allow-Methods": true
"method.response.header.Access-Control-Allow-Origin": true
ResponseModels:
"application/json": "Empty"
# Create API Method : OPTIONS
APILambdaPermissionGetLatestStagedModels:
Type: "AWS::Lambda::Permission"
Properties:
FunctionName: !Ref LambdaGetLatestModelMetrics
Action: "lambda:InvokeFunction"
Principal: "apigateway.amazonaws.com"
SourceArn: !Sub "arn:aws:execute-api:${AWS::Region}:${AWS::AccountId}:${APIGateway}/*/*"
DependsOn: LambdaGetLatestModelMetrics
# Create API Resource
APIResourceGetLatestStagedModels:
Type: AWS::ApiGateway::Resource
Properties:
RestApiId: !Ref APIGateway
ParentId: !GetAtt APIGateway.RootResourceId
PathPart: get-latest-staged-model
# Create API Method : POST
APIGetLatestStagedModels:
Type: AWS::ApiGateway::Method
Properties:
RestApiId: !Ref APIGateway
ResourceId: !Ref APIResourceGetLatestStagedModels
HttpMethod: POST
AuthorizationType: NONE
MethodResponses:
- StatusCode: "200"
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: true
method.response.header.Access-Control-Allow-Methods: true
method.response.header.Access-Control-Allow-Origin: true
Integration:
IntegrationHttpMethod: POST
Type: AWS
IntegrationResponses:
- StatusCode: 200
ResponseTemplates:
application/json: $input.json('$')
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: "'Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token'"
method.response.header.Access-Control-Allow-Methods: "'GET,POST,PUT,DELETE,OPTIONS'"
method.response.header.Access-Control-Allow-Origin: "'*'"
Uri: !Sub arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${LambdaGetLatestModelMetrics.Arn}/invocations
DependsOn:
- LambdaGetLatestModelMetrics
- APILambdaPermissionGetLatestStagedModels
# Create API Method : OPTIONS
OptionsGetLatestStagedModels:
Type: AWS::ApiGateway::Method
Properties:
AuthorizationType: NONE
RestApiId: !Ref APIGateway
ResourceId: !Ref APIResourceGetLatestStagedModels
HttpMethod: OPTIONS
Integration:
IntegrationResponses:
- StatusCode: 200
ResponseParameters:
"method.response.header.Access-Control-Allow-Headers": "'Content-Type,X-Amz-Date,Authorization,X-Api-Key'"
"method.response.header.Access-Control-Allow-Methods": "'GET,POST,PUT,DELETE'"
"method.response.header.Access-Control-Allow-Origin": "'*'"
ResponseTemplates:
"application/json": ""
PassthroughBehavior: WHEN_NO_MATCH
RequestTemplates:
"application/json": '{"statusCode": 200}'
Type: MOCK
MethodResponses:
- StatusCode: 200
ResponseParameters:
"method.response.header.Access-Control-Allow-Headers": true
"method.response.header.Access-Control-Allow-Methods": true
"method.response.header.Access-Control-Allow-Origin": true
ResponseModels:
"application/json": "Empty"
# Specify permiscsion to API Gateway to invoke lamdba function
APILambdaPermissionPredict:
Type: "AWS::Lambda::Permission"
Properties:
FunctionName: !Ref LambdaGetPrediction
Action: "lambda:InvokeFunction"
Principal: "apigateway.amazonaws.com"
SourceArn: !Sub "arn:aws:execute-api:${AWS::Region}:${AWS::AccountId}:${APIGateway}/*/*"
DependsOn: LambdaGetPrediction
# Create API Resource
APIResourcePredict:
Type: AWS::ApiGateway::Resource
Properties:
RestApiId: !Ref APIGateway
ParentId: !GetAtt APIGateway.RootResourceId
PathPart: predict
# Create API Method : POST
APIPredict:
Type: AWS::ApiGateway::Method
Properties:
RestApiId: !Ref APIGateway
ResourceId: !Ref APIResourcePredict
HttpMethod: POST
AuthorizationType: NONE
MethodResponses:
- StatusCode: "200"
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: true
method.response.header.Access-Control-Allow-Methods: true
method.response.header.Access-Control-Allow-Origin: true
Integration:
IntegrationHttpMethod: POST
Type: AWS
IntegrationResponses:
- StatusCode: 200
ResponseTemplates:
application/json: $input.json('$')
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: "'Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token'"
method.response.header.Access-Control-Allow-Methods: "'GET,POST,PUT,DELETE,OPTIONS'"
method.response.header.Access-Control-Allow-Origin: "'*'"
Uri: !Sub arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${LambdaGetPrediction.Arn}/invocations
DependsOn:
- LambdaGetPrediction
- APILambdaPermissionPredict
# Create API Method : OPTIONS
OptionsPredict:
Type: AWS::ApiGateway::Method
Properties:
AuthorizationType: NONE
RestApiId: !Ref APIGateway
ResourceId: !Ref APIResourcePredict
HttpMethod: OPTIONS
Integration:
IntegrationResponses:
- StatusCode: 200
ResponseParameters:
"method.response.header.Access-Control-Allow-Headers": "'Content-Type,X-Amz-Date,Authorization,X-Api-Key'"
"method.response.header.Access-Control-Allow-Methods": "'GET,POST,PUT,DELETE'"
"method.response.header.Access-Control-Allow-Origin": "'*'"
ResponseTemplates:
"application/json": ""
PassthroughBehavior: WHEN_NO_MATCH
RequestTemplates:
"application/json": '{"statusCode": 200}'
Type: MOCK
MethodResponses:
- StatusCode: 200
ResponseParameters:
"method.response.header.Access-Control-Allow-Headers": true
"method.response.header.Access-Control-Allow-Methods": true
"method.response.header.Access-Control-Allow-Origin": true
ResponseModels:
"application/json": "Empty"
# Specify permiscsion to API Gateway to invoke lamdba function
APILambdaPermissionRejectStagedModel:
Type: "AWS::Lambda::Permission"
Properties:
FunctionName: !Ref LambdaRejectStagedModel
Action: "lambda:InvokeFunction"
Principal: "apigateway.amazonaws.com"
SourceArn: !Sub "arn:aws:execute-api:${AWS::Region}:${AWS::AccountId}:${APIGateway}/*/*"
DependsOn: LambdaRejectStagedModel
# Create API Resource
APIResourceRejectStagedModel:
Type: AWS::ApiGateway::Resource
Properties:
RestApiId: !Ref APIGateway
ParentId: !GetAtt APIGateway.RootResourceId
PathPart: reject-staged-model
# Create API Method : POST
APIRejectStagedModel:
Type: AWS::ApiGateway::Method
Properties:
RestApiId: !Ref APIGateway
ResourceId: !Ref APIResourceRejectStagedModel
HttpMethod: POST
AuthorizationType: NONE
MethodResponses:
- StatusCode: "200"
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: true
method.response.header.Access-Control-Allow-Methods: true
method.response.header.Access-Control-Allow-Origin: true
Integration:
IntegrationHttpMethod: POST
Type: AWS
IntegrationResponses:
- StatusCode: 200
ResponseTemplates:
application/json: $input.json('$')
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: "'Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token'"
method.response.header.Access-Control-Allow-Methods: "'GET,POST,PUT,DELETE,OPTIONS'"
method.response.header.Access-Control-Allow-Origin: "'*'"
Uri: !Sub arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${LambdaRejectStagedModel.Arn}/invocations
DependsOn:
- LambdaRejectStagedModel
- APILambdaPermissionRejectStagedModel
# Create API Method : OPTIONS
OptionsRejectStagedModel:
Type: AWS::ApiGateway::Method
Properties:
AuthorizationType: NONE
RestApiId: !Ref APIGateway
ResourceId: !Ref APIResourceRejectStagedModel
HttpMethod: OPTIONS
Integration:
IntegrationResponses:
- StatusCode: 200
ResponseParameters:
"method.response.header.Access-Control-Allow-Headers": "'Content-Type,X-Amz-Date,Authorization,X-Api-Key'"
"method.response.header.Access-Control-Allow-Methods": "'GET,POST,PUT,DELETE'"
"method.response.header.Access-Control-Allow-Origin": "'*'"
ResponseTemplates:
"application/json": ""
PassthroughBehavior: WHEN_NO_MATCH
RequestTemplates:
"application/json": '{"statusCode": 200}'
Type: MOCK
MethodResponses:
- StatusCode: 200
ResponseParameters:
"method.response.header.Access-Control-Allow-Headers": true
"method.response.header.Access-Control-Allow-Methods": true
"method.response.header.Access-Control-Allow-Origin": true
ResponseModels:
"application/json": "Empty"
# Specify permiscsion to API Gateway to invoke lamdba function
APILambdaPermissionStartModelTraining:
Type: "AWS::Lambda::Permission"
Properties:
FunctionName: !Ref LambdaInitiateModelTrainingJob
Action: "lambda:InvokeFunction"
Principal: "apigateway.amazonaws.com"
SourceArn: !Sub "arn:aws:execute-api:${AWS::Region}:${AWS::AccountId}:${APIGateway}/*/*"
DependsOn: LambdaInitiateModelTrainingJob
# Create API Resource
APIResourceStartModelTraining:
Type: AWS::ApiGateway::Resource
Properties:
RestApiId: !Ref APIGateway
ParentId: !GetAtt APIGateway.RootResourceId
PathPart: start-model-training
# Create API Method : POST
APIStartModelTraining:
Type: AWS::ApiGateway::Method
Properties:
RestApiId: !Ref APIGateway
ResourceId: !Ref APIResourceStartModelTraining
HttpMethod: POST
AuthorizationType: NONE
MethodResponses:
- StatusCode: "200"
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: true
method.response.header.Access-Control-Allow-Methods: true
method.response.header.Access-Control-Allow-Origin: true
Integration:
IntegrationHttpMethod: POST
Type: AWS
IntegrationResponses:
- StatusCode: 200
ResponseTemplates:
application/json: $input.json('$')
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: "'Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token'"
method.response.header.Access-Control-Allow-Methods: "'GET,POST,PUT,DELETE,OPTIONS'"
method.response.header.Access-Control-Allow-Origin: "'*'"
Uri: !Sub arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${LambdaInitiateModelTrainingJob.Arn}/invocations
DependsOn:
- LambdaInitiateModelTrainingJob
- APILambdaPermissionStartModelTraining
# Create API Method : OPTIONS
OptionsStartModelTraining:
Type: AWS::ApiGateway::Method
Properties:
AuthorizationType: NONE
RestApiId: !Ref APIGateway
ResourceId: !Ref APIResourceStartModelTraining
HttpMethod: OPTIONS
Integration:
IntegrationResponses:
- StatusCode: 200
ResponseParameters:
"method.response.header.Access-Control-Allow-Headers": "'Content-Type,X-Amz-Date,Authorization,X-Api-Key'"
"method.response.header.Access-Control-Allow-Methods": "'GET,POST,PUT,DELETE'"
"method.response.header.Access-Control-Allow-Origin": "'*'"
ResponseTemplates:
"application/json": ""
PassthroughBehavior: WHEN_NO_MATCH
RequestTemplates:
"application/json": '{"statusCode": 200}'
Type: MOCK
MethodResponses:
- StatusCode: 200
ResponseParameters:
"method.response.header.Access-Control-Allow-Headers": true
"method.response.header.Access-Control-Allow-Methods": true
"method.response.header.Access-Control-Allow-Origin": true
ResponseModels:
"application/json": "Empty"
# Specify permiscsion to API Gateway to invoke lamdba function
APILambdaPermissionSubscribeUser:
Type: "AWS::Lambda::Permission"
Properties:
FunctionName: !Ref LambdaSubscribeToPipelineNotifications
Action: "lambda:InvokeFunction"
Principal: "apigateway.amazonaws.com"
SourceArn: !Sub "arn:aws:execute-api:${AWS::Region}:${AWS::AccountId}:${APIGateway}/*/*"
DependsOn: LambdaSubscribeToPipelineNotifications
# Create API Resource
APIResourceSubscribeUser:
Type: AWS::ApiGateway::Resource
Properties:
RestApiId: !Ref APIGateway
ParentId: !GetAtt APIGateway.RootResourceId
PathPart: subscribe-user
# Create API Method : POST
APISubscribeUser:
Type: AWS::ApiGateway::Method
Properties:
RestApiId: !Ref APIGateway
ResourceId: !Ref APIResourceSubscribeUser
HttpMethod: POST
AuthorizationType: NONE
MethodResponses:
- StatusCode: "200"
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: true
method.response.header.Access-Control-Allow-Methods: true
method.response.header.Access-Control-Allow-Origin: true
Integration:
IntegrationHttpMethod: POST
Type: AWS
IntegrationResponses:
- StatusCode: 200
ResponseTemplates:
application/json: $input.json('$')
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: "'Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token'"
method.response.header.Access-Control-Allow-Methods: "'GET,POST,PUT,DELETE,OPTIONS'"
method.response.header.Access-Control-Allow-Origin: "'*'"
Uri: !Sub arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${LambdaSubscribeToPipelineNotifications.Arn}/invocations
DependsOn:
- LambdaSubscribeToPipelineNotifications
- APILambdaPermissionSubscribeUser
# Create API Method : OPTIONS
OptionsSubscribeUser:
Type: AWS::ApiGateway::Method
Properties:
AuthorizationType: NONE
RestApiId: !Ref APIGateway
ResourceId: !Ref APIResourceSubscribeUser
HttpMethod: OPTIONS
Integration:
IntegrationResponses:
- StatusCode: 200
ResponseParameters:
"method.response.header.Access-Control-Allow-Headers": "'Content-Type,X-Amz-Date,Authorization,X-Api-Key'"
"method.response.header.Access-Control-Allow-Methods": "'GET,POST,PUT,DELETE'"
"method.response.header.Access-Control-Allow-Origin": "'*'"
ResponseTemplates:
"application/json": ""
PassthroughBehavior: WHEN_NO_MATCH
RequestTemplates:
"application/json": '{"statusCode": 200}'
Type: MOCK
MethodResponses:
- StatusCode: 200
ResponseParameters:
"method.response.header.Access-Control-Allow-Headers": true
"method.response.header.Access-Control-Allow-Methods": true
"method.response.header.Access-Control-Allow-Origin": true
ResponseModels:
"application/json": "Empty"
# Specify permiscsion to API Gateway to invoke lamdba function
APILambdaPermissionUploadImageToS3:
Type: "AWS::Lambda::Permission"
Properties:
FunctionName: !Ref LambdaUploadImageToS3Bucket
Action: "lambda:InvokeFunction"
Principal: "apigateway.amazonaws.com"
SourceArn: !Sub "arn:aws:execute-api:${AWS::Region}:${AWS::AccountId}:${APIGateway}/*/*"
DependsOn: LambdaUploadImageToS3Bucket
# Create API Resource
APIResourceUploadImageToS3:
Type: AWS::ApiGateway::Resource
Properties:
RestApiId: !Ref APIGateway
ParentId: !GetAtt APIGateway.RootResourceId
PathPart: upload-image-to-s3
# Create API Method : POST
APIUploadImageToS3:
Type: AWS::ApiGateway::Method
Properties:
RestApiId: !Ref APIGateway
ResourceId: !Ref APIResourceUploadImageToS3
HttpMethod: POST
AuthorizationType: NONE
MethodResponses:
- StatusCode: "200"
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: true
method.response.header.Access-Control-Allow-Methods: true
method.response.header.Access-Control-Allow-Origin: true
Integration:
IntegrationHttpMethod: POST
Type: AWS
IntegrationResponses:
- StatusCode: 200
ResponseTemplates:
application/json: $input.json('$')
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: "'Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token'"
method.response.header.Access-Control-Allow-Methods: "'GET,POST,PUT,DELETE,OPTIONS'"
method.response.header.Access-Control-Allow-Origin: "'*'"
Uri: !Sub arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${LambdaUploadImageToS3Bucket.Arn}/invocations
DependsOn:
- LambdaUploadImageToS3Bucket
- APILambdaPermissionUploadImageToS3
# Create API Method : OPTIONS
OptionsUploadImageToS3:
Type: AWS::ApiGateway::Method
Properties:
AuthorizationType: NONE
RestApiId: !Ref APIGateway
ResourceId: !Ref APIResourceUploadImageToS3
HttpMethod: OPTIONS
Integration:
IntegrationResponses:
- StatusCode: 200
ResponseParameters:
"method.response.header.Access-Control-Allow-Headers": "'Content-Type,X-Amz-Date,Authorization,X-Api-Key'"
"method.response.header.Access-Control-Allow-Methods": "'GET,POST,PUT,DELETE'"
"method.response.header.Access-Control-Allow-Origin": "'*'"
ResponseTemplates:
"application/json": ""
PassthroughBehavior: WHEN_NO_MATCH
RequestTemplates:
"application/json": '{"statusCode": 200}'
Type: MOCK
MethodResponses:
- StatusCode: 200
ResponseParameters:
"method.response.header.Access-Control-Allow-Headers": true
"method.response.header.Access-Control-Allow-Methods": true
"method.response.header.Access-Control-Allow-Origin": true
ResponseModels:
"application/json": "Empty"
# Create the deployemnt of the Rest API
APIDeployment:
Type: AWS::ApiGateway::Deployment
DependsOn:
- APIAcceptStagedModel
- APICompareModels
- APIGetLatestStagedModels
- APIPredict
- APIResourceRejectStagedModel
- APIRejectStagedModel
- APIStartModelTraining
- APISubscribeUser
- APIUploadImageToS3
Properties:
RestApiId: !Ref APIGateway
Description: mlops pipeline API Gateway deployment