-
Notifications
You must be signed in to change notification settings - Fork 100
/
latest-releases.edn
1065 lines (1065 loc) · 42.3 KB
/
latest-releases.edn
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
{com.cognitect.aws/api {:mvn/version "0.8.710-beta01"},
com.cognitect.aws/endpoints {:mvn/version "1.1.12.772"},
com.cognitect.aws/AWS242AppRegistry
{:mvn/version "852.2.1525.0",
:aws/serviceFullName "AWS Service Catalog App Registry"},
com.cognitect.aws/AWSApplicationCostProfiler
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWS Application Cost Profiler"},
com.cognitect.aws/AWSMigrationHub
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWS Migration Hub"},
com.cognitect.aws/accessanalyzer
{:mvn/version "869.2.1687.0", :aws/serviceFullName "Access Analyzer"},
com.cognitect.aws/account
{:mvn/version "869.2.1687.0", :aws/serviceFullName "AWS Account"},
com.cognitect.aws/acm
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Certificate Manager"},
com.cognitect.aws/acm-pca
{:mvn/version "869.2.1687.0",
:aws/serviceFullName
"AWS Certificate Manager Private Certificate Authority"},
com.cognitect.aws/amp
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "Amazon Prometheus Service"},
com.cognitect.aws/amplify
{:mvn/version "869.2.1687.0", :aws/serviceFullName "AWS Amplify"},
com.cognitect.aws/amplifybackend
{:mvn/version "852.2.1525.0", :aws/serviceFullName "AmplifyBackend"},
com.cognitect.aws/amplifyuibuilder
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "AWS Amplify UI Builder"},
com.cognitect.aws/apigateway
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon API Gateway"},
com.cognitect.aws/apigatewaymanagementapi
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AmazonApiGatewayManagementApi"},
com.cognitect.aws/apigatewayv2
{:mvn/version "852.2.1525.0",
:aws/serviceFullName "AmazonApiGatewayV2"},
com.cognitect.aws/appconfig
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon AppConfig"},
com.cognitect.aws/appconfigdata
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWS AppConfig Data"},
com.cognitect.aws/appfabric
{:mvn/version "848.2.1413.0", :aws/serviceFullName "AppFabric"},
com.cognitect.aws/appflow
{:mvn/version "852.2.1525.0", :aws/serviceFullName "Amazon Appflow"},
com.cognitect.aws/appintegrations
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon AppIntegrations Service"},
com.cognitect.aws/application-autoscaling
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Application Auto Scaling"},
com.cognitect.aws/application-insights
{:mvn/version "852.2.1525.0",
:aws/serviceFullName "Amazon CloudWatch Application Insights"},
com.cognitect.aws/application-signals
{:mvn/version "870.2.1691.0",
:aws/serviceFullName "Amazon CloudWatch Application Signals"},
com.cognitect.aws/appmesh
{:mvn/version "852.2.1525.0", :aws/serviceFullName "AWS App Mesh"},
com.cognitect.aws/apprunner
{:mvn/version "857.2.1574.0", :aws/serviceFullName "AWS App Runner"},
com.cognitect.aws/appstream
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon AppStream"},
com.cognitect.aws/appsync
{:mvn/version "870.2.1691.0", :aws/serviceFullName "AWS AppSync"},
com.cognitect.aws/apptest
{:mvn/version "869.2.1687.0",
:aws/serviceFullName
"AWS Mainframe Modernization Application Testing"},
com.cognitect.aws/arc-zonal-shift
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS ARC - Zonal Shift"},
com.cognitect.aws/artifact
{:mvn/version "869.2.1687.0", :aws/serviceFullName "AWS Artifact"},
com.cognitect.aws/athena
{:mvn/version "869.2.1687.0", :aws/serviceFullName "Amazon Athena"},
com.cognitect.aws/auditmanager
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Audit Manager"},
com.cognitect.aws/autoscaling
{:mvn/version "869.2.1687.0", :aws/serviceFullName "Auto Scaling"},
com.cognitect.aws/autoscaling-plans
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWS Auto Scaling Plans"},
com.cognitect.aws/b2bi
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS B2B Data Interchange"},
com.cognitect.aws/backup
{:mvn/version "869.2.1687.0", :aws/serviceFullName "AWS Backup"},
com.cognitect.aws/backup-gateway
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWS Backup Gateway"},
com.cognitect.aws/batch
{:mvn/version "869.2.1687.0", :aws/serviceFullName "AWS Batch"},
com.cognitect.aws/bcm-data-exports
{:mvn/version "852.2.1526.0",
:aws/serviceFullName "AWS Billing and Cost Management Data Exports"},
com.cognitect.aws/bedrock
{:mvn/version "869.2.1687.0", :aws/serviceFullName "Amazon Bedrock"},
com.cognitect.aws/bedrock-agent
{:mvn/version "870.2.1691.0",
:aws/serviceFullName "Agents for Amazon Bedrock"},
com.cognitect.aws/bedrock-agent-runtime
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Agents for Amazon Bedrock Runtime"},
com.cognitect.aws/bedrock-runtime
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Bedrock Runtime"},
com.cognitect.aws/billingconductor
{:mvn/version "852.2.1526.0",
:aws/serviceFullName "AWSBillingConductor"},
com.cognitect.aws/braket
{:mvn/version "857.2.1574.0", :aws/serviceFullName "Braket"},
com.cognitect.aws/budgets
{:mvn/version "869.2.1616.0", :aws/serviceFullName "AWS Budgets"},
com.cognitect.aws/ce
{:mvn/version "869.2.1616.0",
:aws/serviceFullName "AWS Cost Explorer Service"},
com.cognitect.aws/chatbot
{:mvn/version "869.2.1687.0", :aws/serviceFullName "AWS Chatbot"},
com.cognitect.aws/chime
{:mvn/version "848.2.1413.0", :aws/serviceFullName "Amazon Chime"},
com.cognitect.aws/chime-sdk-identity
{:mvn/version "848.2.1413.0",
:aws/serviceFullName "Amazon Chime SDK Identity"},
com.cognitect.aws/chime-sdk-media-pipelines
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Chime SDK Media Pipelines"},
com.cognitect.aws/chime-sdk-meetings
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "Amazon Chime SDK Meetings"},
com.cognitect.aws/chime-sdk-messaging
{:mvn/version "848.2.1413.0",
:aws/serviceFullName "Amazon Chime SDK Messaging"},
com.cognitect.aws/chime-sdk-voice
{:mvn/version "869.2.1616.0",
:aws/serviceFullName "Amazon Chime SDK Voice"},
com.cognitect.aws/cleanrooms
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Clean Rooms Service"},
com.cognitect.aws/cleanroomsml
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Clean Rooms ML"},
com.cognitect.aws/cloud9
{:mvn/version "857.2.1574.0", :aws/serviceFullName "AWS Cloud9"},
com.cognitect.aws/cloudcontrol
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "AWS Cloud Control API"},
com.cognitect.aws/clouddirectory
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon CloudDirectory"},
com.cognitect.aws/cloudformation
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS CloudFormation"},
com.cognitect.aws/cloudfront
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon CloudFront"},
com.cognitect.aws/cloudhsm
{:mvn/version "857.2.1574.0", :aws/serviceFullName "Amazon CloudHSM"},
com.cognitect.aws/cloudhsmv2
{:mvn/version "869.2.1687.0", :aws/serviceFullName "AWS CloudHSM V2"},
com.cognitect.aws/cloudsearch
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon CloudSearch"},
com.cognitect.aws/cloudsearchdomain
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon CloudSearch Domain"},
com.cognitect.aws/cloudtrail
{:mvn/version "869.2.1687.0", :aws/serviceFullName "AWS CloudTrail"},
com.cognitect.aws/cloudtrail-data
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWS CloudTrail Data Service"},
com.cognitect.aws/codeartifact
{:mvn/version "869.2.1687.0", :aws/serviceFullName "CodeArtifact"},
com.cognitect.aws/codebuild
{:mvn/version "869.2.1687.0", :aws/serviceFullName "AWS CodeBuild"},
com.cognitect.aws/codecatalyst
{:mvn/version "868.2.1599.0",
:aws/serviceFullName "Amazon CodeCatalyst"},
com.cognitect.aws/codecommit
{:mvn/version "869.2.1687.0", :aws/serviceFullName "AWS CodeCommit"},
com.cognitect.aws/codeconnections
{:mvn/version "868.2.1599.0",
:aws/serviceFullName "AWS CodeConnections"},
com.cognitect.aws/codedeploy
{:mvn/version "869.2.1687.0", :aws/serviceFullName "AWS CodeDeploy"},
com.cognitect.aws/codeguru-reviewer
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon CodeGuru Reviewer"},
com.cognitect.aws/codeguru-security
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon CodeGuru Security"},
com.cognitect.aws/codeguruprofiler
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon CodeGuru Profiler"},
com.cognitect.aws/codepipeline
{:mvn/version "870.2.1691.0",
:aws/serviceFullName "AWS CodePipeline"},
com.cognitect.aws/codestar-connections
{:mvn/version "868.2.1580.0",
:aws/serviceFullName "AWS CodeStar connections"},
com.cognitect.aws/codestar-notifications
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWS CodeStar Notifications"},
com.cognitect.aws/cognito-identity
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Cognito Identity"},
com.cognitect.aws/cognito-idp
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Cognito Identity Provider"},
com.cognitect.aws/cognito-sync
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon Cognito Sync"},
com.cognitect.aws/comprehend
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "Amazon Comprehend"},
com.cognitect.aws/comprehendmedical
{:mvn/version "848.2.1413.0",
:aws/serviceFullName "AWS Comprehend Medical"},
com.cognitect.aws/compute-optimizer
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Compute Optimizer"},
com.cognitect.aws/config
{:mvn/version "869.2.1687.0", :aws/serviceFullName "AWS Config"},
com.cognitect.aws/connect
{:mvn/version "870.2.1691.0",
:aws/serviceFullName "Amazon Connect Service"},
com.cognitect.aws/connect-contact-lens
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Connect Contact Lens"},
com.cognitect.aws/connectcampaigns
{:mvn/version "869.2.1616.0",
:aws/serviceFullName "AmazonConnectCampaignService"},
com.cognitect.aws/connectcases
{:mvn/version "869.2.1616.0",
:aws/serviceFullName "Amazon Connect Cases"},
com.cognitect.aws/connectparticipant
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "Amazon Connect Participant Service"},
com.cognitect.aws/controlcatalog
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Control Catalog"},
com.cognitect.aws/controltower
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Control Tower"},
com.cognitect.aws/cost-optimization-hub
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Cost Optimization Hub"},
com.cognitect.aws/cur
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Cost and Usage Report Service"},
com.cognitect.aws/customer-profiles
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Connect Customer Profiles"},
com.cognitect.aws/databrew
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWS Glue DataBrew"},
com.cognitect.aws/dataexchange
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "AWS Data Exchange"},
com.cognitect.aws/datapipeline
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWS Data Pipeline"},
com.cognitect.aws/datasync
{:mvn/version "869.2.1687.0", :aws/serviceFullName "AWS DataSync"},
com.cognitect.aws/datazone
{:mvn/version "870.2.1691.0", :aws/serviceFullName "Amazon DataZone"},
com.cognitect.aws/dax
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon DynamoDB Accelerator (DAX)"},
com.cognitect.aws/deadline
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWSDeadlineCloud"},
com.cognitect.aws/detective
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "Amazon Detective"},
com.cognitect.aws/devicefarm
{:mvn/version "869.2.1687.0", :aws/serviceFullName "AWS Device Farm"},
com.cognitect.aws/devices
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWS IoT 1-Click Devices Service"},
com.cognitect.aws/devops-guru
{:mvn/version "848.2.1413.0",
:aws/serviceFullName "Amazon DevOps Guru"},
com.cognitect.aws/directconnect
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Direct Connect"},
com.cognitect.aws/discovery
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Application Discovery Service"},
com.cognitect.aws/dlm
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "Amazon Data Lifecycle Manager"},
com.cognitect.aws/dms
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Database Migration Service"},
com.cognitect.aws/docdb
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon DocumentDB with MongoDB compatibility"},
com.cognitect.aws/docdb-elastic
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "Amazon DocumentDB Elastic Clusters"},
com.cognitect.aws/drs
{:mvn/version "869.2.1616.0",
:aws/serviceFullName "Elastic Disaster Recovery Service"},
com.cognitect.aws/ds
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Directory Service"},
com.cognitect.aws/dynamodb
{:mvn/version "869.2.1687.0", :aws/serviceFullName "Amazon DynamoDB"},
com.cognitect.aws/ebs
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "Amazon Elastic Block Store"},
com.cognitect.aws/ec2
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Elastic Compute Cloud"},
com.cognitect.aws/ec2-instance-connect
{:mvn/version "868.2.1580.0",
:aws/serviceFullName "AWS EC2 Instance Connect"},
com.cognitect.aws/ecr
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon EC2 Container Registry"},
com.cognitect.aws/ecr-public
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon Elastic Container Registry Public"},
com.cognitect.aws/ecs
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon EC2 Container Service"},
com.cognitect.aws/eks
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Elastic Kubernetes Service"},
com.cognitect.aws/eks-auth
{:mvn/version "857.2.1574.0", :aws/serviceFullName "Amazon EKS Auth"},
com.cognitect.aws/elastic-inference
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon Elastic Inference"},
com.cognitect.aws/elasticache
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon ElastiCache"},
com.cognitect.aws/elasticbeanstalk
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Elastic Beanstalk"},
com.cognitect.aws/elasticfilesystem
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Elastic File System"},
com.cognitect.aws/elasticloadbalancing
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Elastic Load Balancing"},
com.cognitect.aws/elasticloadbalancingv2
{:mvn/version "870.2.1691.0",
:aws/serviceFullName "Elastic Load Balancing"},
com.cognitect.aws/elasticmapreduce
{:mvn/version "869.2.1687.0", :aws/serviceFullName "Amazon EMR"},
com.cognitect.aws/elastictranscoder
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Elastic Transcoder"},
com.cognitect.aws/email
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Simple Email Service"},
com.cognitect.aws/emr-containers
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon EMR Containers"},
com.cognitect.aws/emr-serverless
{:mvn/version "869.2.1687.0", :aws/serviceFullName "EMR Serverless"},
com.cognitect.aws/entitlement-marketplace
{:mvn/version "869.2.1616.0",
:aws/serviceFullName "AWS Marketplace Entitlement Service"},
com.cognitect.aws/entityresolution
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS EntityResolution"},
com.cognitect.aws/es
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Elasticsearch Service"},
com.cognitect.aws/eventbridge
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon EventBridge"},
com.cognitect.aws/events
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "Amazon CloudWatch Events"},
com.cognitect.aws/evidently
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon CloudWatch Evidently"},
com.cognitect.aws/finspace
{:mvn/version "870.2.1691.0",
:aws/serviceFullName "FinSpace User Environment Management service"},
com.cognitect.aws/firehose
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Kinesis Firehose"},
com.cognitect.aws/fis
{:mvn/version "870.2.1691.0",
:aws/serviceFullName "AWS Fault Injection Simulator"},
com.cognitect.aws/fms
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Firewall Management Service"},
com.cognitect.aws/forecast
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon Forecast Service"},
com.cognitect.aws/forecastquery
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon Forecast Query Service"},
com.cognitect.aws/frauddetector
{:mvn/version "847.2.1398.0",
:aws/serviceFullName "Amazon Fraud Detector"},
com.cognitect.aws/freetier
{:mvn/version "857.2.1574.0", :aws/serviceFullName "AWS Free Tier"},
com.cognitect.aws/fsx
{:mvn/version "869.2.1687.0", :aws/serviceFullName "Amazon FSx"},
com.cognitect.aws/gamelift
{:mvn/version "870.2.1691.0", :aws/serviceFullName "Amazon GameLift"},
com.cognitect.aws/glacier
{:mvn/version "847.2.1365.0", :aws/serviceFullName "Amazon Glacier"},
com.cognitect.aws/globalaccelerator
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Global Accelerator"},
com.cognitect.aws/glue
{:mvn/version "869.2.1687.0", :aws/serviceFullName "AWS Glue"},
com.cognitect.aws/grafana
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Managed Grafana"},
com.cognitect.aws/greengrass
{:mvn/version "847.2.1365.0", :aws/serviceFullName "AWS Greengrass"},
com.cognitect.aws/greengrassv2
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS IoT Greengrass V2"},
com.cognitect.aws/groundstation
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Ground Station"},
com.cognitect.aws/guardduty
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon GuardDuty"},
com.cognitect.aws/health
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "AWS Health APIs and Notifications"},
com.cognitect.aws/healthlake
{:mvn/version "868.2.1599.0",
:aws/serviceFullName "Amazon HealthLake"},
com.cognitect.aws/iam
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Identity and Access Management"},
com.cognitect.aws/identitystore
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "AWS SSO Identity Store"},
com.cognitect.aws/imagebuilder
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "EC2 Image Builder"},
com.cognitect.aws/importexport
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWS Import/Export"},
com.cognitect.aws/inspector
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon Inspector"},
com.cognitect.aws/inspector-scan
{:mvn/version "857.2.1574.0", :aws/serviceFullName "Inspector Scan"},
com.cognitect.aws/inspector2
{:mvn/version "869.2.1687.0", :aws/serviceFullName "Inspector2"},
com.cognitect.aws/internetmonitor
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon CloudWatch Internet Monitor"},
com.cognitect.aws/iot
{:mvn/version "857.2.1574.0", :aws/serviceFullName "AWS IoT"},
com.cognitect.aws/iot-data
{:mvn/version "847.2.1398.0",
:aws/serviceFullName "AWS IoT Data Plane"},
com.cognitect.aws/iot-jobs-data
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWS IoT Jobs Data Plane"},
com.cognitect.aws/iot1click-projects
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWS IoT 1-Click Projects Service"},
com.cognitect.aws/iotanalytics
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWS IoT Analytics"},
com.cognitect.aws/iotdeviceadvisor
{:mvn/version "847.2.1398.0",
:aws/serviceFullName "AWS IoT Core Device Advisor"},
com.cognitect.aws/iotevents
{:mvn/version "857.2.1574.0", :aws/serviceFullName "AWS IoT Events"},
com.cognitect.aws/iotevents-data
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWS IoT Events Data"},
com.cognitect.aws/iotfleethub
{:mvn/version "868.2.1599.0",
:aws/serviceFullName "AWS IoT Fleet Hub"},
com.cognitect.aws/iotfleetwise
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS IoT FleetWise"},
com.cognitect.aws/iotsecuretunneling
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWS IoT Secure Tunneling"},
com.cognitect.aws/iotsitewise
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS IoT SiteWise"},
com.cognitect.aws/iotthingsgraph
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWS IoT Things Graph"},
com.cognitect.aws/iottwinmaker
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS IoT TwinMaker"},
com.cognitect.aws/iotwireless
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS IoT Wireless"},
com.cognitect.aws/ivs
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Interactive Video Service"},
com.cognitect.aws/ivs-realtime
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Interactive Video Service RealTime"},
com.cognitect.aws/ivschat
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Interactive Video Service Chat"},
com.cognitect.aws/kafka
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Managed Streaming for Kafka"},
com.cognitect.aws/kafkaconnect
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "Managed Streaming for Kafka Connect"},
com.cognitect.aws/kendra
{:mvn/version "868.2.1584.0",
:aws/serviceFullName "AWSKendraFrontendService"},
com.cognitect.aws/kendra-ranking
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon Kendra Intelligent Ranking"},
com.cognitect.aws/keyspaces
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "Amazon Keyspaces"},
com.cognitect.aws/kinesis
{:mvn/version "869.2.1687.0", :aws/serviceFullName "Amazon Kinesis"},
com.cognitect.aws/kinesis-video-archived-media
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "Amazon Kinesis Video Streams Archived Media"},
com.cognitect.aws/kinesis-video-media
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon Kinesis Video Streams Media"},
com.cognitect.aws/kinesis-video-signaling
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon Kinesis Video Signaling Channels"},
com.cognitect.aws/kinesis-video-webrtc-storage
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Kinesis Video WebRTC Storage"},
com.cognitect.aws/kinesisanalytics
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon Kinesis Analytics"},
com.cognitect.aws/kinesisanalyticsv2
{:mvn/version "870.2.1691.0",
:aws/serviceFullName "Amazon Kinesis Analytics"},
com.cognitect.aws/kinesisvideo
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "Amazon Kinesis Video Streams"},
com.cognitect.aws/kms
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Key Management Service"},
com.cognitect.aws/lakeformation
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Lake Formation"},
com.cognitect.aws/lambda
{:mvn/version "869.2.1687.0", :aws/serviceFullName "AWS Lambda"},
com.cognitect.aws/launch-wizard
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Launch Wizard"},
com.cognitect.aws/lex-models
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon Lex Model Building Service"},
com.cognitect.aws/license-manager
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWS License Manager"},
com.cognitect.aws/license-manager-linux-subscriptions
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS License Manager Linux Subscriptions"},
com.cognitect.aws/license-manager-user-subscriptions
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWS License Manager User Subscriptions"},
com.cognitect.aws/lightsail
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Lightsail"},
com.cognitect.aws/location
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Location Service"},
com.cognitect.aws/logs
{:mvn/version "870.2.1691.0",
:aws/serviceFullName "Amazon CloudWatch Logs"},
com.cognitect.aws/lookoutequipment
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "Amazon Lookout for Equipment"},
com.cognitect.aws/lookoutmetrics
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon Lookout for Metrics"},
com.cognitect.aws/lookoutvision
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon Lookout for Vision"},
com.cognitect.aws/m2
{:mvn/version "869.2.1616.0",
:aws/serviceFullName "AWSMainframeModernization"},
com.cognitect.aws/machinelearning
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "Amazon Machine Learning"},
com.cognitect.aws/macie2
{:mvn/version "869.2.1687.0", :aws/serviceFullName "Amazon Macie 2"},
com.cognitect.aws/mailmanager
{:mvn/version "869.2.1687.0", :aws/serviceFullName "MailManager"},
com.cognitect.aws/managedblockchain
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Managed Blockchain"},
com.cognitect.aws/managedblockchain-query
{:mvn/version "868.2.1584.0",
:aws/serviceFullName "Amazon Managed Blockchain Query"},
com.cognitect.aws/marketplace-agreement
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "AWS Marketplace Agreement Service"},
com.cognitect.aws/marketplace-catalog
{:mvn/version "868.2.1599.0",
:aws/serviceFullName "AWS Marketplace Catalog Service"},
com.cognitect.aws/marketplace-deployment
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "AWS Marketplace Deployment Service"},
com.cognitect.aws/marketplacecommerceanalytics
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "AWS Marketplace Commerce Analytics"},
com.cognitect.aws/mediaconnect
{:mvn/version "870.2.1691.0",
:aws/serviceFullName "AWS MediaConnect"},
com.cognitect.aws/mediaconvert
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Elemental MediaConvert"},
com.cognitect.aws/medialive
{:mvn/version "870.2.1691.0",
:aws/serviceFullName "AWS Elemental MediaLive"},
com.cognitect.aws/mediapackage
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "AWS Elemental MediaPackage"},
com.cognitect.aws/mediapackage-vod
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWS Elemental MediaPackage VOD"},
com.cognitect.aws/mediapackagev2
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Elemental MediaPackage v2"},
com.cognitect.aws/mediastore
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWS Elemental MediaStore"},
com.cognitect.aws/mediastore-data
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWS Elemental MediaStore Data Plane"},
com.cognitect.aws/mediatailor
{:mvn/version "868.2.1599.0", :aws/serviceFullName "AWS MediaTailor"},
com.cognitect.aws/medical-imaging
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Health Imaging"},
com.cognitect.aws/memorydb
{:mvn/version "869.2.1687.0", :aws/serviceFullName "Amazon MemoryDB"},
com.cognitect.aws/meteringmarketplace
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWSMarketplace Metering"},
com.cognitect.aws/mgn
{:mvn/version "868.2.1599.0",
:aws/serviceFullName "Application Migration Service"},
com.cognitect.aws/migration-hub-refactor-spaces
{:mvn/version "847.2.1387.0",
:aws/serviceFullName "AWS Migration Hub Refactor Spaces"},
com.cognitect.aws/migrationhub-config
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "AWS Migration Hub Config"},
com.cognitect.aws/migrationhuborchestrator
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "AWS Migration Hub Orchestrator"},
com.cognitect.aws/migrationhubstrategy
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "Migration Hub Strategy Recommendations"},
com.cognitect.aws/mobileanalytics
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon Mobile Analytics"},
com.cognitect.aws/models-lex-v2
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Lex Model Building V2"},
com.cognitect.aws/monitoring
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon CloudWatch"},
com.cognitect.aws/mq
{:mvn/version "869.2.1687.0", :aws/serviceFullName "AmazonMQ"},
com.cognitect.aws/mturk-requester
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon Mechanical Turk"},
com.cognitect.aws/mwaa
{:mvn/version "869.2.1687.0", :aws/serviceFullName "AmazonMWAA"},
com.cognitect.aws/neptune
{:mvn/version "857.2.1574.0", :aws/serviceFullName "Amazon Neptune"},
com.cognitect.aws/neptunedata
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "Amazon NeptuneData"},
com.cognitect.aws/network-firewall
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Network Firewall"},
com.cognitect.aws/networkmanager
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Network Manager"},
com.cognitect.aws/networkmonitor
{:mvn/version "868.2.1599.0",
:aws/serviceFullName "Amazon CloudWatch Network Monitor"},
com.cognitect.aws/nimble
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AmazonNimbleStudio"},
com.cognitect.aws/oam
{:mvn/version "869.2.1616.0",
:aws/serviceFullName "CloudWatch Observability Access Manager"},
com.cognitect.aws/omics
{:mvn/version "869.2.1687.0", :aws/serviceFullName "Amazon Omics"},
com.cognitect.aws/opensearch
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon OpenSearch Service"},
com.cognitect.aws/opensearchserverless
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "OpenSearch Service Serverless"},
com.cognitect.aws/opsworks
{:mvn/version "869.2.1687.0", :aws/serviceFullName "AWS OpsWorks"},
com.cognitect.aws/opsworkscm
{:mvn/version "847.2.1365.0", :aws/serviceFullName "AWS OpsWorks CM"},
com.cognitect.aws/organizations
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Organizations"},
com.cognitect.aws/osis
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon OpenSearch Ingestion"},
com.cognitect.aws/outposts
{:mvn/version "869.2.1687.0", :aws/serviceFullName "AWS Outposts"},
com.cognitect.aws/panorama
{:mvn/version "847.2.1365.0", :aws/serviceFullName "AWS Panorama"},
com.cognitect.aws/payment-cryptography
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Payment Cryptography Control Plane"},
com.cognitect.aws/payment-cryptography-data
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Payment Cryptography Data Plane"},
com.cognitect.aws/pca-connector-ad
{:mvn/version "857.2.1574.0", :aws/serviceFullName "PcaConnectorAd"},
com.cognitect.aws/pca-connector-scep
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Private CA Connector for SCEP"},
com.cognitect.aws/pcs
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Parallel Computing Service"},
com.cognitect.aws/personalize
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Personalize"},
com.cognitect.aws/personalize-events
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "Amazon Personalize Events"},
com.cognitect.aws/personalize-runtime
{:mvn/version "869.2.1616.0",
:aws/serviceFullName "Amazon Personalize Runtime"},
com.cognitect.aws/pi
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Performance Insights"},
com.cognitect.aws/pinpoint
{:mvn/version "869.2.1687.0", :aws/serviceFullName "Amazon Pinpoint"},
com.cognitect.aws/pinpoint-email
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon Pinpoint Email Service"},
com.cognitect.aws/pinpoint-sms-voice
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon Pinpoint SMS and Voice Service"},
com.cognitect.aws/pinpoint-sms-voice-v2
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Pinpoint SMS Voice V2"},
com.cognitect.aws/pipes
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon EventBridge Pipes"},
com.cognitect.aws/polly
{:mvn/version "869.2.1687.0", :aws/serviceFullName "Amazon Polly"},
com.cognitect.aws/pricing
{:mvn/version "868.2.1584.0",
:aws/serviceFullName "AWS Price List Service"},
com.cognitect.aws/privatenetworks
{:mvn/version "848.2.1413.0", :aws/serviceFullName "AWS Private 5G"},
com.cognitect.aws/proton
{:mvn/version "857.2.1574.0", :aws/serviceFullName "AWS Proton"},
com.cognitect.aws/qapps
{:mvn/version "870.2.1691.0", :aws/serviceFullName "QApps"},
com.cognitect.aws/qbusiness
{:mvn/version "869.2.1687.0", :aws/serviceFullName "QBusiness"},
com.cognitect.aws/qconnect
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Q Connect"},
com.cognitect.aws/qldb
{:mvn/version "857.2.1574.0", :aws/serviceFullName "Amazon QLDB"},
com.cognitect.aws/qldb-session
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon QLDB Session"},
com.cognitect.aws/quicksight
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon QuickSight"},
com.cognitect.aws/ram
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "AWS Resource Access Manager"},
com.cognitect.aws/rbin
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "Amazon Recycle Bin"},
com.cognitect.aws/rds
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Relational Database Service"},
com.cognitect.aws/rds-data
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "AWS RDS DataService"},
com.cognitect.aws/redshift
{:mvn/version "869.2.1687.0", :aws/serviceFullName "Amazon Redshift"},
com.cognitect.aws/redshift-data
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Redshift Data API Service"},
com.cognitect.aws/redshift-serverless
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Redshift Serverless"},
com.cognitect.aws/rekognition
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Rekognition"},
com.cognitect.aws/repostspace
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "AWS re:Post Private"},
com.cognitect.aws/resiliencehub
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Resilience Hub"},
com.cognitect.aws/resource-explorer-2
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "AWS Resource Explorer"},
com.cognitect.aws/resource-groups
{:mvn/version "868.2.1599.0",
:aws/serviceFullName "AWS Resource Groups"},
com.cognitect.aws/resourcegroupstaggingapi
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWS Resource Groups Tagging API"},
com.cognitect.aws/robomaker
{:mvn/version "847.2.1365.0", :aws/serviceFullName "AWS RoboMaker"},
com.cognitect.aws/rolesanywhere
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "IAM Roles Anywhere"},
com.cognitect.aws/route53
{:mvn/version "869.2.1687.0", :aws/serviceFullName "Amazon Route 53"},
com.cognitect.aws/route53-recovery-cluster
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "Route53 Recovery Cluster"},
com.cognitect.aws/route53-recovery-control-config
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "AWS Route53 Recovery Control Config"},
com.cognitect.aws/route53-recovery-readiness
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWS Route53 Recovery Readiness"},
com.cognitect.aws/route53domains
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Route 53 Domains"},
com.cognitect.aws/route53profiles
{:mvn/version "869.2.1616.0",
:aws/serviceFullName "Route 53 Profiles"},
com.cognitect.aws/route53resolver
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Route 53 Resolver"},
com.cognitect.aws/rum
{:mvn/version "857.2.1574.0", :aws/serviceFullName "CloudWatch RUM"},
com.cognitect.aws/runtime-lex
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon Lex Runtime Service"},
com.cognitect.aws/runtime-lex-v2
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "Amazon Lex Runtime V2"},
com.cognitect.aws/runtime-sagemaker
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "Amazon SageMaker Runtime"},
com.cognitect.aws/s3
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Simple Storage Service"},
com.cognitect.aws/s3control
{:mvn/version "870.2.1691.0", :aws/serviceFullName "AWS S3 Control"},
com.cognitect.aws/s3outposts
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "Amazon S3 on Outposts"},
com.cognitect.aws/sagemaker
{:mvn/version "870.2.1691.0",
:aws/serviceFullName "Amazon SageMaker Service"},
com.cognitect.aws/sagemaker-a2i-runtime
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon Augmented AI Runtime"},
com.cognitect.aws/sagemaker-edge
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon Sagemaker Edge Manager"},
com.cognitect.aws/sagemaker-featurestore-runtime
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "Amazon SageMaker Feature Store Runtime"},
com.cognitect.aws/sagemaker-geospatial
{:mvn/version "847.2.1387.0",
:aws/serviceFullName "Amazon SageMaker geospatial capabilities"},
com.cognitect.aws/sagemaker-metrics
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "Amazon SageMaker Metrics Service"},
com.cognitect.aws/savingsplans
{:mvn/version "868.2.1584.0",
:aws/serviceFullName "AWS Savings Plans"},
com.cognitect.aws/scheduler
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "Amazon EventBridge Scheduler"},
com.cognitect.aws/schemas
{:mvn/version "847.2.1365.0", :aws/serviceFullName "Schemas"},
com.cognitect.aws/sdb
{:mvn/version "847.2.1365.0", :aws/serviceFullName "Amazon SimpleDB"},
com.cognitect.aws/secretsmanager
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Secrets Manager"},
com.cognitect.aws/securityhub
{:mvn/version "869.2.1687.0", :aws/serviceFullName "AWS SecurityHub"},
com.cognitect.aws/securitylake
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Security Lake"},
com.cognitect.aws/serverlessrepo
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWSServerlessApplicationRepository"},
com.cognitect.aws/service-quotas
{:mvn/version "857.2.1574.0", :aws/serviceFullName "Service Quotas"},
com.cognitect.aws/servicecatalog
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "AWS Service Catalog"},
com.cognitect.aws/servicediscovery
{:mvn/version "869.2.1616.0", :aws/serviceFullName "AWS Cloud Map"},
com.cognitect.aws/sesv2
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Simple Email Service"},
com.cognitect.aws/shield
{:mvn/version "869.2.1687.0", :aws/serviceFullName "AWS Shield"},
com.cognitect.aws/signer
{:mvn/version "869.2.1616.0", :aws/serviceFullName "AWS Signer"},
com.cognitect.aws/simspaceweaver
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "AWS SimSpace Weaver"},
com.cognitect.aws/sms
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWS Server Migration Service"},
com.cognitect.aws/snow-device-management
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWS Snow Device Management"},
com.cognitect.aws/snowball
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Import/Export Snowball"},
com.cognitect.aws/sns
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Simple Notification Service"},
com.cognitect.aws/sqs
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Simple Queue Service"},
com.cognitect.aws/ssm
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Simple Systems Manager (SSM)"},
com.cognitect.aws/ssm-contacts
{:mvn/version "847.2.1365.0",
:aws/serviceFullName
"AWS Systems Manager Incident Manager Contacts"},
com.cognitect.aws/ssm-incidents
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "AWS Systems Manager Incident Manager"},
com.cognitect.aws/ssm-quicksetup
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Systems Manager QuickSetup"},
com.cognitect.aws/ssm-sap
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Systems Manager for SAP"},
com.cognitect.aws/sso
{:mvn/version "847.2.1365.0",
:aws/serviceFullName "AWS Single Sign-On"},
com.cognitect.aws/sso-admin
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "AWS Single Sign-On Admin"},
com.cognitect.aws/sso-oidc
{:mvn/version "869.2.1687.0", :aws/serviceFullName "AWS SSO OIDC"},
com.cognitect.aws/states
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Step Functions"},
com.cognitect.aws/storagegateway
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Storage Gateway"},
com.cognitect.aws/streams-dynamodb
{:mvn/version "847.2.1398.0",
:aws/serviceFullName "Amazon DynamoDB Streams"},
com.cognitect.aws/sts
{:mvn/version "857.2.1574.0",
:aws/serviceFullName "AWS Security Token Service"},
com.cognitect.aws/supplychain
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "AWS Supply Chain"},
com.cognitect.aws/support
{:mvn/version "869.2.1687.0", :aws/serviceFullName "AWS Support"},
com.cognitect.aws/support-app
{:mvn/version "847.2.1365.0", :aws/serviceFullName "AWS Support App"},
com.cognitect.aws/swf
{:mvn/version "869.2.1687.0",
:aws/serviceFullName "Amazon Simple Workflow Service"},
com.cognitect.aws/synthetics
{:mvn/version "847.2.1365.0", :aws/serviceFullName "Synthetics"},
com.cognitect.aws/taxsettings
{:mvn/version "869.2.1687.0", :aws/serviceFullName "Tax Settings"},
com.cognitect.aws/textract
{:mvn/version "857.2.1574.0", :aws/serviceFullName "Amazon Textract"},