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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
|
{
"$note": "Automatically generated by generateFeatures.ps1 from vcpkg.in.json, do not edit manually",
"name": "aws-sdk-cpp",
"version": "1.11.665",
"description": "AWS SDK for C++",
"homepage": "https://github.com/aws/aws-sdk-cpp",
"license": "Apache-2.0",
"dependencies": [
"aws-crt-cpp",
{
"name": "curl",
"default-features": false,
"features": [
"ssl"
],
"platform": "!uwp & !windows"
},
{
"name": "openssl",
"platform": "!uwp & !windows"
},
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
},
"zlib"
],
"default-features": [
"dynamodb",
"kinesis",
"s3"
],
"features": {
"access-management": {
"description": "C++ SDK for the AWS access-management service",
"dependencies": [
{
"name": "aws-sdk-cpp",
"default-features": false,
"features": [
"cognito-identity",
"iam"
]
}
]
},
"accessanalyzer": {
"description": "C++ SDK for the AWS accessanalyzer service"
},
"account": {
"description": "C++ SDK for the AWS account service"
},
"acm": {
"description": "C++ SDK for the AWS acm service"
},
"acm-pca": {
"description": "C++ SDK for the AWS acm-pca service"
},
"aiops": {
"description": "C++ SDK for the AWS aiops service"
},
"amp": {
"description": "C++ SDK for the AWS amp service"
},
"amplify": {
"description": "C++ SDK for the AWS amplify service"
},
"amplifybackend": {
"description": "C++ SDK for the AWS amplifybackend service"
},
"amplifyuibuilder": {
"description": "C++ SDK for the AWS amplifyuibuilder service"
},
"apigateway": {
"description": "C++ SDK for the AWS apigateway service"
},
"apigatewaymanagementapi": {
"description": "C++ SDK for the AWS apigatewaymanagementapi service"
},
"apigatewayv2": {
"description": "C++ SDK for the AWS apigatewayv2 service"
},
"appconfig": {
"description": "C++ SDK for the AWS appconfig service"
},
"appconfigdata": {
"description": "C++ SDK for the AWS appconfigdata service"
},
"appfabric": {
"description": "C++ SDK for the AWS appfabric service"
},
"appflow": {
"description": "C++ SDK for the AWS appflow service"
},
"appintegrations": {
"description": "C++ SDK for the AWS appintegrations service"
},
"application-autoscaling": {
"description": "C++ SDK for the AWS application-autoscaling service"
},
"application-insights": {
"description": "C++ SDK for the AWS application-insights service"
},
"application-signals": {
"description": "C++ SDK for the AWS application-signals service"
},
"applicationcostprofiler": {
"description": "C++ SDK for the AWS applicationcostprofiler service"
},
"appmesh": {
"description": "C++ SDK for the AWS appmesh service"
},
"apprunner": {
"description": "C++ SDK for the AWS apprunner service"
},
"appstream": {
"description": "C++ SDK for the AWS appstream service"
},
"appsync": {
"description": "C++ SDK for the AWS appsync service"
},
"apptest": {
"description": "C++ SDK for the AWS apptest service"
},
"arc-region-switch": {
"description": "C++ SDK for the AWS arc-region-switch service"
},
"arc-zonal-shift": {
"description": "C++ SDK for the AWS arc-zonal-shift service"
},
"artifact": {
"description": "C++ SDK for the AWS artifact service"
},
"athena": {
"description": "C++ SDK for the AWS athena service"
},
"auditmanager": {
"description": "C++ SDK for the AWS auditmanager service"
},
"autoscaling": {
"description": "C++ SDK for the AWS autoscaling service"
},
"autoscaling-plans": {
"description": "C++ SDK for the AWS autoscaling-plans service"
},
"awsmigrationhub": {
"description": "C++ SDK for the AWS AWSMigrationHub service"
},
"awstransfer": {
"description": "C++ SDK for the AWS awstransfer service"
},
"b2bi": {
"description": "C++ SDK for the AWS b2bi service"
},
"backup": {
"description": "C++ SDK for the AWS backup service"
},
"backup-gateway": {
"description": "C++ SDK for the AWS backup-gateway service"
},
"backupsearch": {
"description": "C++ SDK for the AWS backupsearch service"
},
"batch": {
"description": "C++ SDK for the AWS batch service"
},
"bcm-dashboards": {
"description": "C++ SDK for the AWS bcm-dashboards service"
},
"bcm-data-exports": {
"description": "C++ SDK for the AWS bcm-data-exports service"
},
"bcm-pricing-calculator": {
"description": "C++ SDK for the AWS bcm-pricing-calculator service"
},
"bcm-recommended-actions": {
"description": "C++ SDK for the AWS bcm-recommended-actions service"
},
"bedrock": {
"description": "C++ SDK for the AWS bedrock service"
},
"bedrock-agent": {
"description": "C++ SDK for the AWS bedrock-agent service"
},
"bedrock-agent-runtime": {
"description": "C++ SDK for the AWS bedrock-agent-runtime service"
},
"bedrock-agentcore": {
"description": "C++ SDK for the AWS bedrock-agentcore service"
},
"bedrock-agentcore-control": {
"description": "C++ SDK for the AWS bedrock-agentcore-control service"
},
"bedrock-data-automation": {
"description": "C++ SDK for the AWS bedrock-data-automation service"
},
"bedrock-data-automation-runtime": {
"description": "C++ SDK for the AWS bedrock-data-automation-runtime service"
},
"bedrock-runtime": {
"description": "C++ SDK for the AWS bedrock-runtime service"
},
"billing": {
"description": "C++ SDK for the AWS billing service"
},
"billingconductor": {
"description": "C++ SDK for the AWS billingconductor service"
},
"braket": {
"description": "C++ SDK for the AWS braket service"
},
"budgets": {
"description": "C++ SDK for the AWS budgets service"
},
"ce": {
"description": "C++ SDK for the AWS ce service"
},
"chatbot": {
"description": "C++ SDK for the AWS chatbot service"
},
"chime": {
"description": "C++ SDK for the AWS chime service"
},
"chime-sdk-identity": {
"description": "C++ SDK for the AWS chime-sdk-identity service"
},
"chime-sdk-media-pipelines": {
"description": "C++ SDK for the AWS chime-sdk-media-pipelines service"
},
"chime-sdk-meetings": {
"description": "C++ SDK for the AWS chime-sdk-meetings service"
},
"chime-sdk-messaging": {
"description": "C++ SDK for the AWS chime-sdk-messaging service"
},
"chime-sdk-voice": {
"description": "C++ SDK for the AWS chime-sdk-voice service"
},
"cleanrooms": {
"description": "C++ SDK for the AWS cleanrooms service"
},
"cleanroomsml": {
"description": "C++ SDK for the AWS cleanroomsml service"
},
"cloud9": {
"description": "C++ SDK for the AWS cloud9 service"
},
"cloudcontrol": {
"description": "C++ SDK for the AWS cloudcontrol service"
},
"clouddirectory": {
"description": "C++ SDK for the AWS clouddirectory service"
},
"cloudformation": {
"description": "C++ SDK for the AWS cloudformation service"
},
"cloudfront": {
"description": "C++ SDK for the AWS cloudfront service"
},
"cloudfront-keyvaluestore": {
"description": "C++ SDK for the AWS cloudfront-keyvaluestore service"
},
"cloudhsm": {
"description": "C++ SDK for the AWS cloudhsm service"
},
"cloudhsmv2": {
"description": "C++ SDK for the AWS cloudhsmv2 service"
},
"cloudsearch": {
"description": "C++ SDK for the AWS cloudsearch service"
},
"cloudsearchdomain": {
"description": "C++ SDK for the AWS cloudsearchdomain service"
},
"cloudtrail": {
"description": "C++ SDK for the AWS cloudtrail service"
},
"cloudtrail-data": {
"description": "C++ SDK for the AWS cloudtrail-data service"
},
"codeartifact": {
"description": "C++ SDK for the AWS codeartifact service"
},
"codebuild": {
"description": "C++ SDK for the AWS codebuild service"
},
"codecatalyst": {
"description": "C++ SDK for the AWS codecatalyst service"
},
"codecommit": {
"description": "C++ SDK for the AWS codecommit service"
},
"codeconnections": {
"description": "C++ SDK for the AWS codeconnections service"
},
"codedeploy": {
"description": "C++ SDK for the AWS codedeploy service"
},
"codeguru-reviewer": {
"description": "C++ SDK for the AWS codeguru-reviewer service"
},
"codeguru-security": {
"description": "C++ SDK for the AWS codeguru-security service"
},
"codeguruprofiler": {
"description": "C++ SDK for the AWS codeguruprofiler service"
},
"codepipeline": {
"description": "C++ SDK for the AWS codepipeline service"
},
"codestar-connections": {
"description": "C++ SDK for the AWS codestar-connections service"
},
"codestar-notifications": {
"description": "C++ SDK for the AWS codestar-notifications service"
},
"cognito-identity": {
"description": "C++ SDK for the AWS cognito-identity service"
},
"cognito-idp": {
"description": "C++ SDK for the AWS cognito-idp service"
},
"cognito-sync": {
"description": "C++ SDK for the AWS cognito-sync service"
},
"comprehend": {
"description": "C++ SDK for the AWS comprehend service"
},
"comprehendmedical": {
"description": "C++ SDK for the AWS comprehendmedical service"
},
"compute-optimizer": {
"description": "C++ SDK for the AWS compute-optimizer service"
},
"config": {
"description": "C++ SDK for the AWS config service"
},
"connect": {
"description": "C++ SDK for the AWS connect service"
},
"connect-contact-lens": {
"description": "C++ SDK for the AWS connect-contact-lens service"
},
"connectcampaigns": {
"description": "C++ SDK for the AWS connectcampaigns service"
},
"connectcampaignsv2": {
"description": "C++ SDK for the AWS connectcampaignsv2 service"
},
"connectcases": {
"description": "C++ SDK for the AWS connectcases service"
},
"connectparticipant": {
"description": "C++ SDK for the AWS connectparticipant service"
},
"controlcatalog": {
"description": "C++ SDK for the AWS controlcatalog service"
},
"controltower": {
"description": "C++ SDK for the AWS controltower service"
},
"cost-optimization-hub": {
"description": "C++ SDK for the AWS cost-optimization-hub service"
},
"cur": {
"description": "C++ SDK for the AWS cur service"
},
"customer-profiles": {
"description": "C++ SDK for the AWS customer-profiles service"
},
"databrew": {
"description": "C++ SDK for the AWS databrew service"
},
"dataexchange": {
"description": "C++ SDK for the AWS dataexchange service"
},
"datapipeline": {
"description": "C++ SDK for the AWS datapipeline service"
},
"datasync": {
"description": "C++ SDK for the AWS datasync service"
},
"datazone": {
"description": "C++ SDK for the AWS datazone service"
},
"dax": {
"description": "C++ SDK for the AWS dax service"
},
"deadline": {
"description": "C++ SDK for the AWS deadline service"
},
"detective": {
"description": "C++ SDK for the AWS detective service"
},
"devicefarm": {
"description": "C++ SDK for the AWS devicefarm service"
},
"devops-guru": {
"description": "C++ SDK for the AWS devops-guru service"
},
"directconnect": {
"description": "C++ SDK for the AWS directconnect service"
},
"directory-service-data": {
"description": "C++ SDK for the AWS directory-service-data service"
},
"discovery": {
"description": "C++ SDK for the AWS discovery service"
},
"dlm": {
"description": "C++ SDK for the AWS dlm service"
},
"dms": {
"description": "C++ SDK for the AWS dms service"
},
"docdb": {
"description": "C++ SDK for the AWS docdb service"
},
"docdb-elastic": {
"description": "C++ SDK for the AWS docdb-elastic service"
},
"drs": {
"description": "C++ SDK for the AWS drs service"
},
"ds": {
"description": "C++ SDK for the AWS ds service"
},
"dsql": {
"description": "C++ SDK for the AWS dsql service"
},
"dynamodb": {
"description": "C++ SDK for the AWS dynamodb service"
},
"dynamodbstreams": {
"description": "C++ SDK for the AWS dynamodbstreams service"
},
"ebs": {
"description": "C++ SDK for the AWS ebs service"
},
"ec2": {
"description": "C++ SDK for the AWS ec2 service"
},
"ec2-instance-connect": {
"description": "C++ SDK for the AWS ec2-instance-connect service"
},
"ecr": {
"description": "C++ SDK for the AWS ecr service"
},
"ecr-public": {
"description": "C++ SDK for the AWS ecr-public service"
},
"ecs": {
"description": "C++ SDK for the AWS ecs service"
},
"eks": {
"description": "C++ SDK for the AWS eks service"
},
"eks-auth": {
"description": "C++ SDK for the AWS eks-auth service"
},
"elasticache": {
"description": "C++ SDK for the AWS elasticache service"
},
"elasticbeanstalk": {
"description": "C++ SDK for the AWS elasticbeanstalk service"
},
"elasticfilesystem": {
"description": "C++ SDK for the AWS elasticfilesystem service"
},
"elasticloadbalancing": {
"description": "C++ SDK for the AWS elasticloadbalancing service"
},
"elasticloadbalancingv2": {
"description": "C++ SDK for the AWS elasticloadbalancingv2 service"
},
"elasticmapreduce": {
"description": "C++ SDK for the AWS elasticmapreduce service"
},
"elastictranscoder": {
"description": "C++ SDK for the AWS elastictranscoder service"
},
"email": {
"description": "C++ SDK for the AWS email service"
},
"emr-containers": {
"description": "C++ SDK for the AWS emr-containers service"
},
"emr-serverless": {
"description": "C++ SDK for the AWS emr-serverless service"
},
"entityresolution": {
"description": "C++ SDK for the AWS entityresolution service"
},
"es": {
"description": "C++ SDK for the AWS es service"
},
"eventbridge": {
"description": "C++ SDK for the AWS eventbridge service"
},
"events": {
"description": "C++ SDK for the AWS events service"
},
"evidently": {
"description": "C++ SDK for the AWS evidently service"
},
"evs": {
"description": "C++ SDK for the AWS evs service"
},
"finspace": {
"description": "C++ SDK for the AWS finspace service"
},
"finspace-data": {
"description": "C++ SDK for the AWS finspace-data service"
},
"firehose": {
"description": "C++ SDK for the AWS firehose service"
},
"fis": {
"description": "C++ SDK for the AWS fis service"
},
"fms": {
"description": "C++ SDK for the AWS fms service"
},
"forecast": {
"description": "C++ SDK for the AWS forecast service"
},
"forecastquery": {
"description": "C++ SDK for the AWS forecastquery service"
},
"frauddetector": {
"description": "C++ SDK for the AWS frauddetector service"
},
"freetier": {
"description": "C++ SDK for the AWS freetier service"
},
"fsx": {
"description": "C++ SDK for the AWS fsx service"
},
"gamelift": {
"description": "C++ SDK for the AWS gamelift service"
},
"gameliftstreams": {
"description": "C++ SDK for the AWS gameliftstreams service"
},
"geo-maps": {
"description": "C++ SDK for the AWS geo-maps service"
},
"geo-places": {
"description": "C++ SDK for the AWS geo-places service"
},
"geo-routes": {
"description": "C++ SDK for the AWS geo-routes service"
},
"glacier": {
"description": "C++ SDK for the AWS glacier service"
},
"globalaccelerator": {
"description": "C++ SDK for the AWS globalaccelerator service"
},
"glue": {
"description": "C++ SDK for the AWS glue service"
},
"grafana": {
"description": "C++ SDK for the AWS grafana service"
},
"greengrass": {
"description": "C++ SDK for the AWS greengrass service"
},
"greengrassv2": {
"description": "C++ SDK for the AWS greengrassv2 service"
},
"groundstation": {
"description": "C++ SDK for the AWS groundstation service"
},
"guardduty": {
"description": "C++ SDK for the AWS guardduty service"
},
"health": {
"description": "C++ SDK for the AWS health service"
},
"healthlake": {
"description": "C++ SDK for the AWS healthlake service"
},
"iam": {
"description": "C++ SDK for the AWS iam service"
},
"identity-management": {
"description": "C++ SDK for the AWS identity-management service",
"dependencies": [
{
"name": "aws-sdk-cpp",
"default-features": false,
"features": [
"cognito-identity",
"sts"
]
}
]
},
"identitystore": {
"description": "C++ SDK for the AWS identitystore service"
},
"imagebuilder": {
"description": "C++ SDK for the AWS imagebuilder service"
},
"importexport": {
"description": "C++ SDK for the AWS importexport service"
},
"inspector": {
"description": "C++ SDK for the AWS inspector service"
},
"inspector-scan": {
"description": "C++ SDK for the AWS inspector-scan service"
},
"inspector2": {
"description": "C++ SDK for the AWS inspector2 service"
},
"internetmonitor": {
"description": "C++ SDK for the AWS internetmonitor service"
},
"invoicing": {
"description": "C++ SDK for the AWS invoicing service"
},
"iot": {
"description": "C++ SDK for the AWS iot service"
},
"iot-data": {
"description": "C++ SDK for the AWS iot-data service"
},
"iot-jobs-data": {
"description": "C++ SDK for the AWS iot-jobs-data service"
},
"iot-managed-integrations": {
"description": "C++ SDK for the AWS iot-managed-integrations service"
},
"iotanalytics": {
"description": "C++ SDK for the AWS iotanalytics service"
},
"iotdeviceadvisor": {
"description": "C++ SDK for the AWS iotdeviceadvisor service"
},
"iotevents": {
"description": "C++ SDK for the AWS iotevents service"
},
"iotevents-data": {
"description": "C++ SDK for the AWS iotevents-data service"
},
"iotfleethub": {
"description": "C++ SDK for the AWS iotfleethub service"
},
"iotfleetwise": {
"description": "C++ SDK for the AWS iotfleetwise service"
},
"iotsecuretunneling": {
"description": "C++ SDK for the AWS iotsecuretunneling service"
},
"iotsitewise": {
"description": "C++ SDK for the AWS iotsitewise service"
},
"iotthingsgraph": {
"description": "C++ SDK for the AWS iotthingsgraph service"
},
"iottwinmaker": {
"description": "C++ SDK for the AWS iottwinmaker service"
},
"iotwireless": {
"description": "C++ SDK for the AWS iotwireless service"
},
"ivs": {
"description": "C++ SDK for the AWS ivs service"
},
"ivs-realtime": {
"description": "C++ SDK for the AWS ivs-realtime service"
},
"ivschat": {
"description": "C++ SDK for the AWS ivschat service"
},
"kafka": {
"description": "C++ SDK for the AWS kafka service"
},
"kafkaconnect": {
"description": "C++ SDK for the AWS kafkaconnect service"
},
"kendra": {
"description": "C++ SDK for the AWS kendra service"
},
"kendra-ranking": {
"description": "C++ SDK for the AWS kendra-ranking service"
},
"keyspaces": {
"description": "C++ SDK for the AWS keyspaces service"
},
"keyspacesstreams": {
"description": "C++ SDK for the AWS keyspacesstreams service"
},
"kinesis": {
"description": "C++ SDK for the AWS kinesis service"
},
"kinesis-video-archived-media": {
"description": "C++ SDK for the AWS kinesis-video-archived-media service"
},
"kinesis-video-media": {
"description": "C++ SDK for the AWS kinesis-video-media service"
},
"kinesis-video-signaling": {
"description": "C++ SDK for the AWS kinesis-video-signaling service"
},
"kinesis-video-webrtc-storage": {
"description": "C++ SDK for the AWS kinesis-video-webrtc-storage service"
},
"kinesisanalytics": {
"description": "C++ SDK for the AWS kinesisanalytics service"
},
"kinesisanalyticsv2": {
"description": "C++ SDK for the AWS kinesisanalyticsv2 service"
},
"kinesisvideo": {
"description": "C++ SDK for the AWS kinesisvideo service"
},
"kms": {
"description": "C++ SDK for the AWS kms service"
},
"lakeformation": {
"description": "C++ SDK for the AWS lakeformation service"
},
"lambda": {
"description": "C++ SDK for the AWS lambda service"
},
"launch-wizard": {
"description": "C++ SDK for the AWS launch-wizard service"
},
"lex": {
"description": "C++ SDK for the AWS lex service"
},
"lex-models": {
"description": "C++ SDK for the AWS lex-models service"
},
"lexv2-models": {
"description": "C++ SDK for the AWS lexv2-models service"
},
"lexv2-runtime": {
"description": "C++ SDK for the AWS lexv2-runtime service"
},
"license-manager": {
"description": "C++ SDK for the AWS license-manager service"
},
"license-manager-linux-subscriptions": {
"description": "C++ SDK for the AWS license-manager-linux-subscriptions service"
},
"license-manager-user-subscriptions": {
"description": "C++ SDK for the AWS license-manager-user-subscriptions service"
},
"lightsail": {
"description": "C++ SDK for the AWS lightsail service"
},
"location": {
"description": "C++ SDK for the AWS location service"
},
"logs": {
"description": "C++ SDK for the AWS logs service"
},
"lookoutequipment": {
"description": "C++ SDK for the AWS lookoutequipment service"
},
"lookoutmetrics": {
"description": "C++ SDK for the AWS lookoutmetrics service"
},
"lookoutvision": {
"description": "C++ SDK for the AWS lookoutvision service"
},
"m2": {
"description": "C++ SDK for the AWS m2 service"
},
"machinelearning": {
"description": "C++ SDK for the AWS machinelearning service"
},
"macie2": {
"description": "C++ SDK for the AWS macie2 service"
},
"mailmanager": {
"description": "C++ SDK for the AWS mailmanager service"
},
"managedblockchain": {
"description": "C++ SDK for the AWS managedblockchain service"
},
"managedblockchain-query": {
"description": "C++ SDK for the AWS managedblockchain-query service"
},
"marketplace-agreement": {
"description": "C++ SDK for the AWS marketplace-agreement service"
},
"marketplace-catalog": {
"description": "C++ SDK for the AWS marketplace-catalog service"
},
"marketplace-deployment": {
"description": "C++ SDK for the AWS marketplace-deployment service"
},
"marketplace-entitlement": {
"description": "C++ SDK for the AWS marketplace-entitlement service"
},
"marketplace-reporting": {
"description": "C++ SDK for the AWS marketplace-reporting service"
},
"marketplacecommerceanalytics": {
"description": "C++ SDK for the AWS marketplacecommerceanalytics service"
},
"mediaconnect": {
"description": "C++ SDK for the AWS mediaconnect service"
},
"mediaconvert": {
"description": "C++ SDK for the AWS mediaconvert service"
},
"medialive": {
"description": "C++ SDK for the AWS medialive service"
},
"mediapackage": {
"description": "C++ SDK for the AWS mediapackage service"
},
"mediapackage-vod": {
"description": "C++ SDK for the AWS mediapackage-vod service"
},
"mediapackagev2": {
"description": "C++ SDK for the AWS mediapackagev2 service"
},
"mediastore": {
"description": "C++ SDK for the AWS mediastore service"
},
"mediastore-data": {
"description": "C++ SDK for the AWS mediastore-data service"
},
"mediatailor": {
"description": "C++ SDK for the AWS mediatailor service"
},
"medical-imaging": {
"description": "C++ SDK for the AWS medical-imaging service"
},
"memorydb": {
"description": "C++ SDK for the AWS memorydb service"
},
"meteringmarketplace": {
"description": "C++ SDK for the AWS meteringmarketplace service"
},
"mgn": {
"description": "C++ SDK for the AWS mgn service"
},
"migration-hub-refactor-spaces": {
"description": "C++ SDK for the AWS migration-hub-refactor-spaces service"
},
"migrationhub-config": {
"description": "C++ SDK for the AWS migrationhub-config service"
},
"migrationhuborchestrator": {
"description": "C++ SDK for the AWS migrationhuborchestrator service"
},
"migrationhubstrategy": {
"description": "C++ SDK for the AWS migrationhubstrategy service"
},
"monitoring": {
"description": "C++ SDK for the AWS monitoring service"
},
"mpa": {
"description": "C++ SDK for the AWS mpa service"
},
"mq": {
"description": "C++ SDK for the AWS mq service"
},
"mturk-requester": {
"description": "C++ SDK for the AWS mturk-requester service"
},
"mwaa": {
"description": "C++ SDK for the AWS mwaa service"
},
"neptune": {
"description": "C++ SDK for the AWS neptune service"
},
"neptune-graph": {
"description": "C++ SDK for the AWS neptune-graph service"
},
"neptunedata": {
"description": "C++ SDK for the AWS neptunedata service"
},
"network-firewall": {
"description": "C++ SDK for the AWS network-firewall service"
},
"networkflowmonitor": {
"description": "C++ SDK for the AWS networkflowmonitor service"
},
"networkmanager": {
"description": "C++ SDK for the AWS networkmanager service"
},
"networkmonitor": {
"description": "C++ SDK for the AWS networkmonitor service"
},
"notifications": {
"description": "C++ SDK for the AWS notifications service"
},
"notificationscontacts": {
"description": "C++ SDK for the AWS notificationscontacts service"
},
"oam": {
"description": "C++ SDK for the AWS oam service"
},
"observabilityadmin": {
"description": "C++ SDK for the AWS observabilityadmin service"
},
"odb": {
"description": "C++ SDK for the AWS odb service"
},
"omics": {
"description": "C++ SDK for the AWS omics service"
},
"opensearch": {
"description": "C++ SDK for the AWS opensearch service"
},
"opensearchserverless": {
"description": "C++ SDK for the AWS opensearchserverless service"
},
"organizations": {
"description": "C++ SDK for the AWS organizations service"
},
"osis": {
"description": "C++ SDK for the AWS osis service"
},
"outposts": {
"description": "C++ SDK for the AWS outposts service"
},
"panorama": {
"description": "C++ SDK for the AWS panorama service"
},
"partnercentral-selling": {
"description": "C++ SDK for the AWS partnercentral-selling service"
},
"payment-cryptography": {
"description": "C++ SDK for the AWS payment-cryptography service"
},
"payment-cryptography-data": {
"description": "C++ SDK for the AWS payment-cryptography-data service"
},
"pca-connector-ad": {
"description": "C++ SDK for the AWS pca-connector-ad service"
},
"pca-connector-scep": {
"description": "C++ SDK for the AWS pca-connector-scep service"
},
"pcs": {
"description": "C++ SDK for the AWS pcs service"
},
"personalize": {
"description": "C++ SDK for the AWS personalize service"
},
"personalize-events": {
"description": "C++ SDK for the AWS personalize-events service"
},
"personalize-runtime": {
"description": "C++ SDK for the AWS personalize-runtime service"
},
"pi": {
"description": "C++ SDK for the AWS pi service"
},
"pinpoint": {
"description": "C++ SDK for the AWS pinpoint service"
},
"pinpoint-email": {
"description": "C++ SDK for the AWS pinpoint-email service"
},
"pinpoint-sms-voice-v2": {
"description": "C++ SDK for the AWS pinpoint-sms-voice-v2 service"
},
"pipes": {
"description": "C++ SDK for the AWS pipes service"
},
"polly": {
"description": "C++ SDK for the AWS polly service"
},
"pricing": {
"description": "C++ SDK for the AWS pricing service"
},
"proton": {
"description": "C++ SDK for the AWS proton service"
},
"qapps": {
"description": "C++ SDK for the AWS qapps service"
},
"qbusiness": {
"description": "C++ SDK for the AWS qbusiness service"
},
"qconnect": {
"description": "C++ SDK for the AWS qconnect service"
},
"qldb": {
"description": "C++ SDK for the AWS qldb service"
},
"qldb-session": {
"description": "C++ SDK for the AWS qldb-session service"
},
"queues": {
"description": "C++ SDK for the AWS queues service",
"dependencies": [
{
"name": "aws-sdk-cpp",
"default-features": false,
"features": [
"sqs"
]
}
]
},
"quicksight": {
"description": "C++ SDK for the AWS quicksight service"
},
"ram": {
"description": "C++ SDK for the AWS ram service"
},
"rbin": {
"description": "C++ SDK for the AWS rbin service"
},
"rds": {
"description": "C++ SDK for the AWS rds service"
},
"rds-data": {
"description": "C++ SDK for the AWS rds-data service"
},
"redshift": {
"description": "C++ SDK for the AWS redshift service"
},
"redshift-data": {
"description": "C++ SDK for the AWS redshift-data service"
},
"redshift-serverless": {
"description": "C++ SDK for the AWS redshift-serverless service"
},
"rekognition": {
"description": "C++ SDK for the AWS rekognition service"
},
"repostspace": {
"description": "C++ SDK for the AWS repostspace service"
},
"resiliencehub": {
"description": "C++ SDK for the AWS resiliencehub service"
},
"resource-explorer-2": {
"description": "C++ SDK for the AWS resource-explorer-2 service"
},
"resource-groups": {
"description": "C++ SDK for the AWS resource-groups service"
},
"resourcegroupstaggingapi": {
"description": "C++ SDK for the AWS resourcegroupstaggingapi service"
},
"robomaker": {
"description": "C++ SDK for the AWS robomaker service"
},
"rolesanywhere": {
"description": "C++ SDK for the AWS rolesanywhere service"
},
"route53": {
"description": "C++ SDK for the AWS route53 service"
},
"route53-recovery-cluster": {
"description": "C++ SDK for the AWS route53-recovery-cluster service"
},
"route53-recovery-control-config": {
"description": "C++ SDK for the AWS route53-recovery-control-config service"
},
"route53-recovery-readiness": {
"description": "C++ SDK for the AWS route53-recovery-readiness service"
},
"route53domains": {
"description": "C++ SDK for the AWS route53domains service"
},
"route53profiles": {
"description": "C++ SDK for the AWS route53profiles service"
},
"route53resolver": {
"description": "C++ SDK for the AWS route53resolver service"
},
"rum": {
"description": "C++ SDK for the AWS rum service"
},
"s3": {
"description": "C++ SDK for the AWS s3 service"
},
"s3-crt": {
"description": "C++ SDK for the AWS s3-crt service"
},
"s3-encryption": {
"description": "C++ SDK for the AWS s3-encryption service",
"dependencies": [
{
"name": "aws-sdk-cpp",
"default-features": false,
"features": [
"kms",
"s3"
]
}
]
},
"s3control": {
"description": "C++ SDK for the AWS s3control service"
},
"s3outposts": {
"description": "C++ SDK for the AWS s3outposts service"
},
"s3tables": {
"description": "C++ SDK for the AWS s3tables service"
},
"s3vectors": {
"description": "C++ SDK for the AWS s3vectors service"
},
"sagemaker": {
"description": "C++ SDK for the AWS sagemaker service"
},
"sagemaker-a2i-runtime": {
"description": "C++ SDK for the AWS sagemaker-a2i-runtime service"
},
"sagemaker-edge": {
"description": "C++ SDK for the AWS sagemaker-edge service"
},
"sagemaker-featurestore-runtime": {
"description": "C++ SDK for the AWS sagemaker-featurestore-runtime service"
},
"sagemaker-geospatial": {
"description": "C++ SDK for the AWS sagemaker-geospatial service"
},
"sagemaker-metrics": {
"description": "C++ SDK for the AWS sagemaker-metrics service"
},
"sagemaker-runtime": {
"description": "C++ SDK for the AWS sagemaker-runtime service"
},
"savingsplans": {
"description": "C++ SDK for the AWS savingsplans service"
},
"scheduler": {
"description": "C++ SDK for the AWS scheduler service"
},
"schemas": {
"description": "C++ SDK for the AWS schemas service"
},
"sdb": {
"description": "C++ SDK for the AWS sdb service"
},
"secretsmanager": {
"description": "C++ SDK for the AWS secretsmanager service"
},
"security-ir": {
"description": "C++ SDK for the AWS security-ir service"
},
"securityhub": {
"description": "C++ SDK for the AWS securityhub service"
},
"securitylake": {
"description": "C++ SDK for the AWS securitylake service"
},
"serverlessrepo": {
"description": "C++ SDK for the AWS serverlessrepo service"
},
"service-quotas": {
"description": "C++ SDK for the AWS service-quotas service"
},
"servicecatalog": {
"description": "C++ SDK for the AWS servicecatalog service"
},
"servicecatalog-appregistry": {
"description": "C++ SDK for the AWS servicecatalog-appregistry service"
},
"servicediscovery": {
"description": "C++ SDK for the AWS servicediscovery service"
},
"sesv2": {
"description": "C++ SDK for the AWS sesv2 service"
},
"shield": {
"description": "C++ SDK for the AWS shield service"
},
"signer": {
"description": "C++ SDK for the AWS signer service"
},
"simspaceweaver": {
"description": "C++ SDK for the AWS simspaceweaver service"
},
"sms-voice": {
"description": "C++ SDK for the AWS sms-voice service"
},
"snow-device-management": {
"description": "C++ SDK for the AWS snow-device-management service"
},
"snowball": {
"description": "C++ SDK for the AWS snowball service"
},
"sns": {
"description": "C++ SDK for the AWS sns service"
},
"socialmessaging": {
"description": "C++ SDK for the AWS socialmessaging service"
},
"sqs": {
"description": "C++ SDK for the AWS sqs service"
},
"ssm": {
"description": "C++ SDK for the AWS ssm service"
},
"ssm-contacts": {
"description": "C++ SDK for the AWS ssm-contacts service"
},
"ssm-guiconnect": {
"description": "C++ SDK for the AWS ssm-guiconnect service"
},
"ssm-incidents": {
"description": "C++ SDK for the AWS ssm-incidents service"
},
"ssm-quicksetup": {
"description": "C++ SDK for the AWS ssm-quicksetup service"
},
"ssm-sap": {
"description": "C++ SDK for the AWS ssm-sap service"
},
"sso": {
"description": "C++ SDK for the AWS sso service"
},
"sso-admin": {
"description": "C++ SDK for the AWS sso-admin service"
},
"sso-oidc": {
"description": "C++ SDK for the AWS sso-oidc service"
},
"states": {
"description": "C++ SDK for the AWS states service"
},
"storagegateway": {
"description": "C++ SDK for the AWS storagegateway service"
},
"sts": {
"description": "C++ SDK for the AWS sts service"
},
"supplychain": {
"description": "C++ SDK for the AWS supplychain service"
},
"support": {
"description": "C++ SDK for the AWS support service"
},
"support-app": {
"description": "C++ SDK for the AWS support-app service"
},
"swf": {
"description": "C++ SDK for the AWS swf service"
},
"synthetics": {
"description": "C++ SDK for the AWS synthetics service"
},
"taxsettings": {
"description": "C++ SDK for the AWS taxsettings service"
},
"text-to-speech": {
"description": "C++ SDK for the AWS text-to-speech service",
"dependencies": [
{
"name": "aws-sdk-cpp",
"default-features": false,
"features": [
"polly"
]
}
]
},
"textract": {
"description": "C++ SDK for the AWS textract service"
},
"timestream-influxdb": {
"description": "C++ SDK for the AWS timestream-influxdb service"
},
"timestream-query": {
"description": "C++ SDK for the AWS timestream-query service"
},
"timestream-write": {
"description": "C++ SDK for the AWS timestream-write service"
},
"tnb": {
"description": "C++ SDK for the AWS tnb service"
},
"transcribe": {
"description": "C++ SDK for the AWS transcribe service"
},
"transcribestreaming": {
"description": "C++ SDK for the AWS transcribestreaming service"
},
"transfer": {
"description": "C++ SDK for the AWS transfer service",
"dependencies": [
{
"name": "aws-sdk-cpp",
"default-features": false,
"features": [
"s3"
]
}
]
},
"translate": {
"description": "C++ SDK for the AWS translate service"
},
"trustedadvisor": {
"description": "C++ SDK for the AWS trustedadvisor service"
},
"verifiedpermissions": {
"description": "C++ SDK for the AWS verifiedpermissions service"
},
"voice-id": {
"description": "C++ SDK for the AWS voice-id service"
},
"vpc-lattice": {
"description": "C++ SDK for the AWS vpc-lattice service"
},
"waf": {
"description": "C++ SDK for the AWS waf service"
},
"waf-regional": {
"description": "C++ SDK for the AWS waf-regional service"
},
"wafv2": {
"description": "C++ SDK for the AWS wafv2 service"
},
"wellarchitected": {
"description": "C++ SDK for the AWS wellarchitected service"
},
"wisdom": {
"description": "C++ SDK for the AWS wisdom service"
},
"workdocs": {
"description": "C++ SDK for the AWS workdocs service"
},
"workmail": {
"description": "C++ SDK for the AWS workmail service"
},
"workmailmessageflow": {
"description": "C++ SDK for the AWS workmailmessageflow service"
},
"workspaces": {
"description": "C++ SDK for the AWS workspaces service"
},
"workspaces-instances": {
"description": "C++ SDK for the AWS workspaces-instances service"
},
"workspaces-thin-client": {
"description": "C++ SDK for the AWS workspaces-thin-client service"
},
"workspaces-web": {
"description": "C++ SDK for the AWS workspaces-web service"
},
"xray": {
"description": "C++ SDK for the AWS xray service"
}
}
}
|