nighthawk 0.1.0

AI terminal autocomplete — zero config, zero login, zero telemetry
Documentation
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
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
{
  "name": "aws",
  "subcommands": [
    {
      "name": "accessanalyzer",
      "description": "Identity and Access Management Access Analyzer helps you to set, verify, and refine your IAM policies by providing a suite of capabilities. Its features include findings for external and unused access"
    },
    {
      "name": "account",
      "description": "Operations for Amazon Web Services Account Management"
    },
    {
      "name": "acm",
      "description": "Certificate Manager You can use Certificate Manager (ACM) to manage SSL/TLS certificates for your Amazon Web Services-based websites and applications. For more information about using ACM, see the Cer"
    },
    {
      "name": "acm-pca",
      "description": "This is the Amazon Web Services Private Certificate Authority API Reference. It provides descriptions, syntax, and usage examples for each of the actions and data types involved in creating and managi"
    },
    {
      "name": "amp",
      "description": "Amazon Managed Service for Prometheus is a serverless, Prometheus-compatible monitoring service for container metrics that makes it easier to securely monitor container environments at scale. With Ama"
    },
    {
      "name": "amplify",
      "description": "Amplify enables developers to develop and deploy cloud-powered mobile and web apps. Amplify Hosting provides a continuous delivery and hosting service for web applications. For more information, see t"
    },
    {
      "name": "amplifybackend",
      "description": "AWS Amplify Admin API"
    },
    {
      "name": "amplifyuibuilder",
      "description": "The Amplify UI Builder API provides a programmatic interface for creating and configuring user interface (UI) component libraries and themes for use in your Amplify applications. You can then connect "
    },
    {
      "name": "apigateway",
      "description": "Amazon API Gateway Amazon API Gateway helps developers deliver robust, secure, and scalable mobile and web application back ends. API Gateway allows developers to securely connect mobile and web appli"
    },
    {
      "name": "apigatewaymanagementapi",
      "description": "The Amazon API Gateway Management API allows you to directly manage runtime aspects of your deployed APIs. To use it, you must explicitly set the SDK's endpoint to point to the endpoint of your deploy"
    },
    {
      "name": "apigatewayv2",
      "description": "Amazon API Gateway V2"
    },
    {
      "name": "appconfig",
      "description": "AppConfig feature flags and dynamic configurations help software builders quickly and securely adjust application behavior in production environments without full code deployments. AppConfig speeds up"
    },
    {
      "name": "appconfigdata",
      "description": "AppConfig Data provides the data plane APIs your application uses to retrieve configuration data. Here's how it works: Your application retrieves configuration data by first establishing a configurati"
    },
    {
      "name": "appfabric",
      "description": "Amazon Web Services AppFabric quickly connects software as a service (SaaS) applications across your organization. This allows IT and security teams to easily manage and secure applications using a st"
    },
    {
      "name": "appflow",
      "description": "Welcome to the Amazon AppFlow API reference. This guide is for developers who need detailed information about the Amazon AppFlow API operations, data types, and errors.  Amazon AppFlow is a fully mana"
    },
    {
      "name": "appintegrations",
      "description": "Amazon AppIntegrations actions     Amazon AppIntegrations data types    The Amazon AppIntegrations service enables you to configure and reuse connections to external applications. For information abou"
    },
    {
      "name": "application-autoscaling",
      "description": "With Application Auto Scaling, you can configure automatic scaling for the following resources:   Amazon AppStream 2.0 fleets   Amazon Aurora Replicas   Amazon Comprehend document classification and e"
    },
    {
      "name": "application-insights",
      "description": "Amazon CloudWatch Application Insights  Amazon CloudWatch Application Insights is a service that helps you detect common problems with your applications. It enables you to pinpoint the source of issue"
    },
    {
      "name": "application-signals",
      "description": "Use CloudWatch Application Signals for comprehensive observability of your cloud-based applications. It enables real-time service health dashboards and helps you track long-term performance trends aga"
    },
    {
      "name": "applicationcostprofiler",
      "description": "This reference provides descriptions of the AWS Application Cost Profiler API. The AWS Application Cost Profiler API provides programmatic access to view, create, update, and delete application cost r"
    },
    {
      "name": "appmesh",
      "description": "App Mesh is a service mesh based on the Envoy proxy that makes it easy to monitor and control microservices. App Mesh standardizes how your microservices communicate, giving you end-to-end visibility "
    },
    {
      "name": "apprunner",
      "description": "App Runner App Runner is an application service that provides a fast, simple, and cost-effective way to go directly from an existing container image or source code to a running service in the Amazon W"
    },
    {
      "name": "appstream",
      "description": "Amazon AppStream 2.0 This is the Amazon AppStream 2.0 API Reference. This documentation provides descriptions and syntax for each of the actions and data types in AppStream 2.0. AppStream 2.0 is a ful"
    },
    {
      "name": "appsync",
      "description": "AppSync provides API actions for creating and interacting with data sources using GraphQL from your application"
    },
    {
      "name": "apptest",
      "description": "AWS Mainframe Modernization Application Testing provides tools and resources for automated functional equivalence testing for your migration projects"
    },
    {
      "name": "arc-zonal-shift",
      "description": "Welcome to the API Reference Guide for zonal shift and zonal autoshift in Amazon Route 53 Application Recovery Controller (Route 53 ARC). You can start a zonal shift to move traffic for a load balance"
    },
    {
      "name": "artifact",
      "description": "This reference provides descriptions of the low-level AWS Artifact Service API"
    },
    {
      "name": "athena",
      "description": "Amazon Athena is an interactive query service that lets you use standard SQL to analyze data directly in Amazon S3. You can point Athena at your data in Amazon S3 and run ad-hoc queries and get result"
    },
    {
      "name": "auditmanager",
      "description": "Welcome to the Audit Manager API reference. This guide is for developers who need detailed information about the Audit Manager API operations, data types, and errors.  Audit Manager is a service that "
    },
    {
      "name": "autoscaling",
      "description": "Amazon EC2 Auto Scaling Amazon EC2 Auto Scaling is designed to automatically launch and terminate EC2 instances based on user-defined scaling policies, scheduled actions, and health checks. For more i"
    },
    {
      "name": "autoscaling-plans",
      "description": "AWS Auto Scaling Use AWS Auto Scaling to create scaling plans for your applications to automatically scale your scalable AWS resources.   API Summary  You can use the AWS Auto Scaling service API to a"
    },
    {
      "name": "b2bi",
      "description": "This is the Amazon Web Services B2B Data Interchange API Reference. It provides descriptions, API request parameters, and the XML response for each of the B2BI API actions. B2BI enables automated exch"
    },
    {
      "name": "backup",
      "description": "Backup Backup is a unified backup service designed to protect Amazon Web Services services and their associated data. Backup simplifies the creation, migration, restoration, and deletion of backups, w"
    },
    {
      "name": "backup-gateway",
      "description": "Backup gateway Backup gateway connects Backup to your hypervisor, so you can create, store, and restore backups of your virtual machines (VMs) anywhere, whether on-premises or in the VMware Cloud (VMC"
    },
    {
      "name": "batch",
      "description": "Batch Using Batch, you can run batch computing workloads on the Amazon Web Services Cloud. Batch computing is a common means for developers, scientists, and engineers to access large amounts of comput"
    },
    {
      "name": "bcm-data-exports",
      "description": "You can use the Data Exports API to create customized exports from multiple Amazon Web Services cost management and billing datasets, such as cost and usage data and cost optimization recommendations."
    },
    {
      "name": "bcm-pricing-calculator",
      "description": "You can use the Pricing Calculator API to programmatically create estimates for your planned cloud use. You can model usage and commitments such as Savings Plans and Reserved Instances, and generate e"
    },
    {
      "name": "bedrock",
      "description": "Describes the API operations for creating, managing, fine-turning, and evaluating Amazon Bedrock models"
    },
    {
      "name": "bedrock-agent",
      "description": "Describes the API operations for creating and managing Amazon Bedrock agents"
    },
    {
      "name": "bedrock-agent-runtime",
      "description": "Contains APIs related to model invocation and querying of knowledge bases"
    },
    {
      "name": "bedrock-data-automation",
      "description": "Amazon Bedrock Keystone Build"
    },
    {
      "name": "bedrock-data-automation-runtime",
      "description": "Amazon Bedrock Keystone Runtime"
    },
    {
      "name": "bedrock-runtime",
      "description": "Describes the API operations for running inference using Amazon Bedrock models"
    },
    {
      "name": "billing",
      "description": "You can use the Billing API to programatically list the billing views available to you for a given time period. A billing view represents a set of billing data.  The Billing API provides the following"
    },
    {
      "name": "billingconductor",
      "description": "Amazon Web Services Billing Conductor is a fully managed service that you can use to customize a proforma version of your billing data each month, to accurately show or chargeback your end customers. "
    },
    {
      "name": "braket",
      "description": "The Amazon Braket API Reference provides information about the operations and structures supported in Amazon Braket. Additional Resources:    Amazon Braket Developer Guide"
    },
    {
      "name": "budgets",
      "description": "Use the Amazon Web Services Budgets API to plan your service usage, service costs, and instance reservations. This API reference provides descriptions, syntax, and usage examples for each of the actio"
    },
    {
      "name": "ce",
      "description": "You can use the Cost Explorer API to programmatically query your cost and usage data. You can query for aggregated data such as total monthly costs or total daily usage. You can also query for granula"
    },
    {
      "name": "chatbot",
      "description": "The AWS Chatbot API Reference provides descriptions, API request parameters, and the XML response for each of the AWS Chatbot API actions. AWS Chatbot APIs are currently available in the following Reg"
    },
    {
      "name": "chime",
      "description": "Most of these APIs are no longer supported and will not be updated. We recommend using the latest versions in the Amazon Chime SDK API reference, in the Amazon Chime SDK. Using the latest versions req"
    },
    {
      "name": "chime-sdk-identity",
      "description": "The Amazon Chime SDK Identity APIs in this section allow software developers to create and manage unique instances of their messaging applications. These APIs provide the overarching framework for cre"
    },
    {
      "name": "chime-sdk-media-pipelines",
      "description": "The Amazon Chime SDK media pipeline APIs in this section allow software developers to create Amazon Chime SDK media pipelines that capture, concatenate, or stream your Amazon Chime SDK meetings. For m"
    },
    {
      "name": "chime-sdk-meetings",
      "description": "The Amazon Chime SDK meetings APIs in this section allow software developers to create Amazon Chime SDK meetings, set the Amazon Web Services Regions for meetings, create and manage users, and send an"
    },
    {
      "name": "chime-sdk-messaging",
      "description": "The Amazon Chime SDK messaging APIs in this section allow software developers to send and receive messages in custom messaging applications. These APIs depend on the frameworks provided by the Amazon "
    },
    {
      "name": "chime-sdk-voice",
      "description": "The Amazon Chime SDK telephony APIs in this section enable developers to create PSTN calling solutions that use Amazon Chime SDK Voice Connectors, and Amazon Chime SDK SIP media applications. Develope"
    },
    {
      "name": "cleanrooms",
      "description": "Welcome to the Clean Rooms API Reference. Clean Rooms is an Amazon Web Services service that helps multiple parties to join their data together in a secure collaboration workspace. In the collaboratio"
    },
    {
      "name": "cleanroomsml",
      "description": "Welcome to the Amazon Web Services Clean Rooms ML API Reference. Amazon Web Services Clean Rooms ML provides a privacy-enhancing method for two parties to identify similar users in their data without "
    },
    {
      "name": "cloud9",
      "description": "Cloud9 Cloud9 is a collection of tools that you can use to code, build, run, test, debug, and release software in the cloud. For more information about Cloud9, see the Cloud9 User Guide. Cloud9 suppor"
    },
    {
      "name": "cloudcontrol",
      "description": "For more information about Amazon Web Services Cloud Control API, see the Amazon Web Services Cloud Control API User Guide"
    },
    {
      "name": "clouddirectory",
      "description": "Amazon Cloud Directory Amazon Cloud Directory is a component of the AWS Directory Service that simplifies the development and management of cloud-scale web, mobile, and IoT applications. This guide de"
    },
    {
      "name": "cloudformation",
      "description": "CloudFormation CloudFormation allows you to create and manage Amazon Web Services infrastructure deployments predictably and repeatedly. You can use CloudFormation to leverage Amazon Web Services prod"
    },
    {
      "name": "cloudfront",
      "description": "Amazon CloudFront This is the Amazon CloudFront API Reference. This guide is for developers who need detailed information about CloudFront API actions, data types, and errors. For detailed information"
    },
    {
      "name": "cloudfront-keyvaluestore",
      "description": "Amazon CloudFront KeyValueStore Service to View and Update Data in a KVS Resource"
    },
    {
      "name": "cloudhsm",
      "description": "AWS CloudHSM Service This is documentation for AWS CloudHSM Classic. For more information, see AWS CloudHSM Classic FAQs, the AWS CloudHSM Classic User Guide, and the AWS CloudHSM Classic API Referenc"
    },
    {
      "name": "cloudhsmv2",
      "description": "For more information about CloudHSM, see CloudHSM and the  CloudHSM User Guide"
    },
    {
      "name": "cloudsearch",
      "description": "Amazon CloudSearch Configuration Service You use the Amazon CloudSearch configuration service to create, configure, and manage search domains. Configuration service requests are submitted using the AW"
    },
    {
      "name": "cloudsearchdomain",
      "description": "You use the AmazonCloudSearch2013 API to upload documents to a search domain and search those documents.  The endpoints for submitting UploadDocuments, Search, and Suggest requests are domain-specific"
    },
    {
      "name": "cloudtrail",
      "description": "CloudTrail This is the CloudTrail API Reference. It provides descriptions of actions, data types, common parameters, and common errors for CloudTrail. CloudTrail is a web service that records Amazon W"
    },
    {
      "name": "cloudtrail-data",
      "description": "The CloudTrail Data Service lets you ingest events into CloudTrail from any source in your hybrid environments, such as in-house or SaaS applications hosted on-premises or in the cloud, virtual machin"
    },
    {
      "name": "cloudwatch",
      "description": "Amazon CloudWatch monitors your Amazon Web Services (Amazon Web Services) resources and the applications you run on Amazon Web Services in real time. You can use CloudWatch to collect and track metric"
    },
    {
      "name": "codeartifact",
      "description": "CodeArtifact is a fully managed artifact repository compatible with language-native package managers and build tools such as npm, Apache Maven, pip, and dotnet. You can use CodeArtifact to share packa"
    },
    {
      "name": "codebuild",
      "description": "CodeBuild CodeBuild is a fully managed build service in the cloud. CodeBuild compiles your source code, runs unit tests, and produces artifacts that are ready to deploy. CodeBuild eliminates the need "
    },
    {
      "name": "codecatalyst",
      "description": "Welcome to the Amazon CodeCatalyst API reference. This reference provides descriptions of operations and data types for Amazon CodeCatalyst. You can use the Amazon CodeCatalyst API to work with the fo"
    },
    {
      "name": "codecommit",
      "description": "CodeCommit This is the CodeCommit API Reference. This reference provides descriptions of the operations and data types for CodeCommit API along with usage examples. You can use the CodeCommit API to w"
    },
    {
      "name": "codeconnections",
      "description": "AWS CodeConnections This Amazon Web Services CodeConnections API Reference provides descriptions and usage examples of the operations and data types for the Amazon Web Services CodeConnections API. Yo"
    },
    {
      "name": "codeguru-reviewer",
      "description": "This section provides documentation for the Amazon CodeGuru Reviewer API operations. CodeGuru Reviewer is a service that uses program analysis and machine learning to detect potential defects that are"
    },
    {
      "name": "codeguru-security",
      "description": "Amazon CodeGuru Security is in preview release and is subject to change.  This section provides documentation for the Amazon CodeGuru Security API operations. CodeGuru Security is a service that uses "
    },
    {
      "name": "codeguruprofiler",
      "description": "This section provides documentation for the Amazon CodeGuru Profiler API operations.   Amazon CodeGuru Profiler collects runtime performance data from your live applications, and provides recommendati"
    },
    {
      "name": "codepipeline",
      "description": "CodePipeline  Overview  This is the CodePipeline API Reference. This guide provides descriptions of the actions and data types for CodePipeline. Some functionality for your pipeline can only be config"
    },
    {
      "name": "codestar-connections",
      "description": "AWS CodeStar Connections This Amazon Web Services CodeStar Connections API Reference provides descriptions and usage examples of the operations and data types for the Amazon Web Services CodeStar Conn"
    },
    {
      "name": "codestar-notifications",
      "description": "This AWS CodeStar Notifications API Reference provides descriptions and usage examples of the operations and data types for the AWS CodeStar Notifications API. You can use the AWS CodeStar Notificatio"
    },
    {
      "name": "cognito-identity",
      "description": "Amazon Cognito Federated Identities Amazon Cognito Federated Identities is a web service that delivers scoped temporary credentials to mobile devices and other untrusted environments. It uniquely iden"
    },
    {
      "name": "cognito-idp",
      "description": "With the Amazon Cognito user pools API, you can configure user pools and authenticate users. To authenticate users from third-party identity providers (IdPs) in this API, you can link IdP users to nat"
    },
    {
      "name": "cognito-sync",
      "description": "Amazon Cognito Sync Amazon Cognito Sync provides an AWS service and client library that enable cross-device syncing of application-related user data. High-level client libraries are available for both"
    },
    {
      "name": "comprehend",
      "description": "Amazon Comprehend is an Amazon Web Services service for gaining insight into the content of documents. Use these actions to determine the topics contained in your documents, the topics they discuss, t"
    },
    {
      "name": "comprehendmedical",
      "description": "Amazon Comprehend Medical extracts structured information from unstructured clinical text. Use these actions to gain insight in your documents. Amazon Comprehend Medical only detects entities in Engli"
    },
    {
      "name": "compute-optimizer",
      "description": "Compute Optimizer is a service that analyzes the configuration and utilization metrics of your Amazon Web Services compute resources, such as Amazon EC2 instances, Amazon EC2 Auto Scaling groups, Lamb"
    },
    {
      "name": "connect",
      "description": "Amazon Connect actions     Amazon Connect data types    Amazon Connect is a cloud-based contact center solution that you use to set up and manage a customer contact center and provide reliable custome"
    },
    {
      "name": "connect-contact-lens",
      "description": "Contact Lens actions     Contact Lens data types    Amazon Connect Contact Lens enables you to analyze conversations between customer and agents, by using speech transcription, natural language proces"
    },
    {
      "name": "connectcampaigns",
      "description": "Provide APIs to create and manage Amazon Connect Campaigns"
    },
    {
      "name": "connectcampaignsv2",
      "description": "Provide APIs to create and manage Amazon Connect Campaigns"
    },
    {
      "name": "connectcases",
      "description": "With Amazon Connect Cases, your agents can track and manage customer issues that require multiple interactions, follow-up tasks, and teams in your contact center. A case represents a customer issue. I"
    },
    {
      "name": "connectparticipant",
      "description": "Amazon Connect is an easy-to-use omnichannel cloud contact center service that enables companies of any size to deliver superior customer service at a lower cost. Amazon Connect communications capabil"
    },
    {
      "name": "controlcatalog",
      "description": "Welcome to the Amazon Web Services Control Catalog API reference. This guide is for developers who need detailed information about how to programmatically identify and filter the common controls and r"
    },
    {
      "name": "controltower",
      "description": "Amazon Web Services Control Tower offers application programming interface (API) operations that support programmatic interaction with these types of resources:     Controls      DisableControl     En"
    },
    {
      "name": "cost-optimization-hub",
      "description": "You can use the Cost Optimization Hub API to programmatically identify, filter, aggregate, and quantify savings for your cost optimization recommendations across multiple Amazon Web Services Regions a"
    },
    {
      "name": "cur",
      "description": "You can use the Amazon Web Services Cost and Usage Report API to programmatically create, query, and delete Amazon Web Services Cost and Usage Report definitions. Amazon Web Services Cost and Usage Re"
    },
    {
      "name": "customer-profiles",
      "description": "Amazon Connect Customer Profiles    Customer Profiles actions     Customer Profiles data types    Amazon Connect Customer Profiles is a unified customer profile for your contact center that has pre-bu"
    },
    {
      "name": "databrew",
      "description": "Glue DataBrew is a visual, cloud-scale data-preparation service. DataBrew simplifies data preparation tasks, targeting data issues that are hard to spot and time-consuming to fix. DataBrew empowers us"
    },
    {
      "name": "dataexchange",
      "description": "AWS Data Exchange is a service that makes it easy for AWS customers to exchange data in the cloud. You can use the AWS Data Exchange APIs to create, update, manage, and access file-based data set in t"
    },
    {
      "name": "datapipeline",
      "description": "AWS Data Pipeline configures and manages a data-driven workflow called a pipeline. AWS Data Pipeline handles the details of scheduling and ensuring that data dependencies are met so that your applicat"
    },
    {
      "name": "datasync",
      "description": "DataSync DataSync is an online data movement and discovery service that simplifies data migration and helps you quickly, easily, and securely transfer your file or object data to, from, and between Am"
    },
    {
      "name": "datazone",
      "description": "Amazon DataZone is a data management service that enables you to catalog, discover, govern, share, and analyze your data. With Amazon DataZone, you can share and access your data across accounts and s"
    },
    {
      "name": "dax",
      "description": "DAX is a managed caching service engineered for Amazon DynamoDB. DAX dramatically speeds up database reads by caching frequently-accessed data from DynamoDB, so applications can access that data with "
    },
    {
      "name": "deadline",
      "description": "The Amazon Web Services Deadline Cloud API provides infrastructure and centralized management for your projects. Use the Deadline Cloud API to onboard users, assign projects, and attach permissions sp"
    },
    {
      "name": "detective",
      "description": "Detective uses machine learning and purpose-built visualizations to help you to analyze and investigate security issues across your Amazon Web Services (Amazon Web Services) workloads. Detective autom"
    },
    {
      "name": "devicefarm",
      "description": "Welcome to the AWS Device Farm API documentation, which contains APIs for:   Testing on desktop browsers  Device Farm makes it possible for you to test your web applications on desktop browsers using "
    },
    {
      "name": "devops-guru",
      "description": "Amazon DevOps Guru is a fully managed service that helps you identify anomalous behavior in business critical operational applications. You specify the Amazon Web Services resources that you want DevO"
    },
    {
      "name": "directconnect",
      "description": "Direct Connect links your internal network to an Direct Connect location over a standard Ethernet fiber-optic cable. One end of the cable is connected to your router, the other to an Direct Connect ro"
    },
    {
      "name": "discovery",
      "description": "Amazon Web Services Application Discovery Service Amazon Web Services Application Discovery Service (Application Discovery Service) helps you plan application migration projects. It automatically iden"
    },
    {
      "name": "dlm",
      "description": "Amazon Data Lifecycle Manager With Amazon Data Lifecycle Manager, you can manage the lifecycle of your Amazon Web Services resources. You create lifecycle policies, which are used to automate operatio"
    },
    {
      "name": "dms",
      "description": "Database Migration Service Database Migration Service (DMS) can migrate your data to and from the most widely used commercial and open-source databases such as Oracle, PostgreSQL, Microsoft SQL Server"
    },
    {
      "name": "docdb",
      "description": "Amazon DocumentDB is a fast, reliable, and fully managed database service. Amazon DocumentDB makes it easy to set up, operate, and scale MongoDB-compatible databases in the cloud. With Amazon Document"
    },
    {
      "name": "docdb-elastic",
      "description": "Amazon DocumentDB elastic clusters Amazon DocumentDB elastic-clusters support workloads with millions of reads/writes per second and petabytes of storage capacity. Amazon DocumentDB elastic clusters a"
    },
    {
      "name": "drs",
      "description": "AWS Elastic Disaster Recovery Service"
    },
    {
      "name": "ds",
      "description": "Directory Service Directory Service is a web service that makes it easy for you to setup and run directories in the Amazon Web Services cloud, or connect your Amazon Web Services resources with an exi"
    },
    {
      "name": "ds-data",
      "description": "Amazon Web Services Directory Service Data is an extension of Directory Service. This API reference provides detailed information about Directory Service Data operations and object types.   With Direc"
    },
    {
      "name": "dsql",
      "description": "This is an interface reference for Amazon Aurora DSQL. It contains documentation for one of the programming or command line interfaces you can use to manage Amazon Aurora DSQL. Amazon Aurora DSQL is a"
    },
    {
      "name": "dynamodb",
      "description": "Amazon DynamoDB Amazon DynamoDB is a fully managed NoSQL database service that provides fast and predictable performance with seamless scalability. DynamoDB lets you offload the administrative burdens"
    },
    {
      "name": "dynamodbstreams",
      "description": "Amazon DynamoDB Amazon DynamoDB Streams provides API actions for accessing streams and processing stream records. To learn more about application development with Streams, see Capturing Table Activity"
    },
    {
      "name": "ebs",
      "description": "You can use the Amazon Elastic Block Store (Amazon EBS) direct APIs to create Amazon EBS snapshots, write data directly to your snapshots, read data on your snapshots, and identify the differences or "
    },
    {
      "name": "ec2",
      "description": "Amazon Elastic Compute Cloud You can access the features of Amazon Elastic Compute Cloud (Amazon EC2) programmatically. For more information, see the Amazon EC2 Developer Guide"
    },
    {
      "name": "ec2-instance-connect",
      "description": "This is the  Amazon EC2 Instance Connect API Reference. It provides descriptions, syntax, and usage examples for each of the actions for Amazon EC2 Instance Connect. Amazon EC2 Instance Connect enable"
    },
    {
      "name": "ecr",
      "description": "Amazon Elastic Container Registry Amazon Elastic Container Registry (Amazon ECR) is a managed container image registry service. Customers can use the familiar Docker CLI, or their preferred client, to"
    },
    {
      "name": "ecr-public",
      "description": "Amazon Elastic Container Registry Public Amazon Elastic Container Registry Public (Amazon ECR Public) is a managed container image registry service. Amazon ECR provides both public and private registr"
    },
    {
      "name": "ecs",
      "description": "Amazon Elastic Container Service Amazon Elastic Container Service (Amazon ECS) is a highly scalable, fast, container management service. It makes it easy to run, stop, and manage Docker containers. Yo"
    },
    {
      "name": "efs",
      "description": "Amazon Elastic File System Amazon Elastic File System (Amazon EFS) provides simple, scalable file storage for use with Amazon EC2 Linux and Mac instances in the Amazon Web Services Cloud. With Amazon "
    },
    {
      "name": "eks",
      "description": "Amazon Elastic Kubernetes Service (Amazon EKS) is a managed service that makes it easy for you to run Kubernetes on Amazon Web Services without needing to setup or maintain your own Kubernetes control"
    },
    {
      "name": "eks-auth",
      "description": "The Amazon EKS Auth API and the AssumeRoleForPodIdentity action are only used by the EKS Pod Identity Agent"
    },
    {
      "name": "elastic-inference",
      "description": "Amazon Elastic Inference is no longer available.   Elastic Inference public APIs"
    },
    {
      "name": "elasticache",
      "description": "Amazon ElastiCache Amazon ElastiCache is a web service that makes it easier to set up, operate, and scale a distributed cache in the cloud. With ElastiCache, customers get all of the benefits of a hig"
    },
    {
      "name": "elasticbeanstalk",
      "description": "AWS Elastic Beanstalk AWS Elastic Beanstalk makes it easy for you to create, deploy, and manage scalable, fault-tolerant applications running on the Amazon Web Services cloud. For more information abo"
    },
    {
      "name": "elastictranscoder",
      "description": "AWS Elastic Transcoder Service The AWS Elastic Transcoder Service"
    },
    {
      "name": "elb",
      "description": "Elastic Load Balancing A load balancer can distribute incoming traffic across your EC2 instances. This enables you to increase the availability of your application. The load balancer also monitors the"
    },
    {
      "name": "elbv2",
      "description": "Elastic Load Balancing A load balancer distributes incoming traffic across targets, such as your EC2 instances. This enables you to increase the availability of your application. The load balancer als"
    },
    {
      "name": "emr",
      "description": "Amazon EMR is a web service that makes it easier to process large amounts of data efficiently. Amazon EMR uses Hadoop processing combined with several Amazon Web Services services to do tasks such as "
    },
    {
      "name": "emr-containers",
      "description": "Amazon EMR on EKS provides a deployment option for Amazon EMR that allows you to run open-source big data frameworks on Amazon Elastic Kubernetes Service (Amazon EKS). With this deployment option, you"
    },
    {
      "name": "emr-serverless",
      "description": "Amazon EMR Serverless is a new deployment option for Amazon EMR. Amazon EMR Serverless provides a serverless runtime environment that simplifies running analytics applications using the latest open so"
    },
    {
      "name": "entityresolution",
      "description": "Welcome to the Entity Resolution API Reference. Entity Resolution is an Amazon Web Services service that provides pre-configured entity resolution capabilities that enable developers and analysts at a"
    },
    {
      "name": "es",
      "description": "Amazon Elasticsearch Configuration Service Use the Amazon Elasticsearch Configuration API to create, configure, and manage Elasticsearch domains. For sample code that uses the Configuration API, see t"
    },
    {
      "name": "events",
      "description": "Amazon EventBridge helps you to respond to state changes in your Amazon Web Services resources. When your resources change state, they automatically send events to an event stream. You can create rule"
    },
    {
      "name": "evidently",
      "description": "You can use Amazon CloudWatch Evidently to safely validate new features by serving them to a specified percentage of your users while you roll out the feature. You can monitor the performance of the n"
    },
    {
      "name": "finspace",
      "description": "The FinSpace management service provides the APIs for managing FinSpace environments"
    },
    {
      "name": "finspace-data",
      "description": "The FinSpace APIs let you take actions inside the FinSpace"
    },
    {
      "name": "firehose",
      "description": "Amazon Data Firehose  Amazon Data Firehose was previously known as Amazon Kinesis Data Firehose.  Amazon Data Firehose is a fully managed service that delivers real-time streaming data to destinations"
    },
    {
      "name": "fis",
      "description": "Amazon Web Services Fault Injection Service is a managed service that enables you to perform fault injection experiments on your Amazon Web Services workloads. For more information, see the Fault Inje"
    },
    {
      "name": "fms",
      "description": "This is the Firewall Manager API Reference. This guide is for developers who need detailed information about the Firewall Manager API actions, data types, and errors. For detailed information about Fi"
    },
    {
      "name": "forecast",
      "description": "Provides APIs for creating and managing Amazon Forecast resources"
    },
    {
      "name": "forecastquery",
      "description": "Provides APIs for creating and managing Amazon Forecast resources"
    },
    {
      "name": "frauddetector",
      "description": "This is the Amazon Fraud Detector API Reference. This guide is for developers who need detailed information about Amazon Fraud Detector API actions, data types, and errors. For more information about "
    },
    {
      "name": "freetier",
      "description": "You can use the Amazon Web Services Free Tier API to query programmatically your Free Tier usage data. Free Tier tracks your monthly usage data for all free tier offers that are associated with your A"
    },
    {
      "name": "fsx",
      "description": "Amazon FSx is a fully managed service that makes it easy for storage and application administrators to launch and use shared file storage"
    },
    {
      "name": "gamelift",
      "description": "Amazon GameLift provides solutions for hosting session-based multiplayer game servers in the cloud, including tools for deploying, operating, and scaling game servers. Built on Amazon Web Services glo"
    },
    {
      "name": "geo-maps",
      "description": "Integrate high-quality base map data into your applications using MapLibre. Capabilities include:    Access to comprehensive base map data, allowing you to tailor the map display to your specific need"
    },
    {
      "name": "geo-places",
      "description": "The Places API enables powerful location search and geocoding capabilities for your applications, offering global coverage with rich, detailed information. Key features include:    Forward and reverse"
    },
    {
      "name": "geo-routes",
      "description": "With the Amazon Location Routes API you can calculate routes and estimate travel time based on up-to-date road network and live traffic information. Calculate optimal travel routes and estimate travel"
    },
    {
      "name": "glacier",
      "description": "Amazon S3 Glacier (Glacier) is a storage solution for \"cold data.\" Glacier is an extremely low-cost storage service that provides secure, durable, and easy-to-use storage for data backup and archival."
    },
    {
      "name": "globalaccelerator",
      "description": "Global Accelerator This is the Global Accelerator API Reference. This guide is for developers who need detailed information about Global Accelerator API actions, data types, and errors. For more infor"
    },
    {
      "name": "glue",
      "description": "Glue Defines the public endpoint for the Glue service"
    },
    {
      "name": "grafana",
      "description": "Amazon Managed Grafana is a fully managed and secure data visualization service that you can use to instantly query, correlate, and visualize operational metrics, logs, and traces from multiple source"
    },
    {
      "name": "greengrass",
      "description": "AWS IoT Greengrass seamlessly extends AWS onto physical devices so they can act locally on the data they generate, while still using the cloud for management, analytics, and durable storage. AWS IoT G"
    },
    {
      "name": "greengrassv2",
      "description": "IoT Greengrass brings local compute, messaging, data management, sync, and ML inference capabilities to edge devices. This enables devices to collect and analyze data closer to the source of informati"
    },
    {
      "name": "groundstation",
      "description": "Welcome to the AWS Ground Station API Reference. AWS Ground Station is a fully managed service that enables you to control satellite communications, downlink and process satellite data, and scale your"
    },
    {
      "name": "guardduty",
      "description": "Amazon GuardDuty is a continuous security monitoring service that analyzes and processes the following foundational data sources - VPC flow logs, Amazon Web Services CloudTrail management event logs, "
    },
    {
      "name": "health",
      "description": "Health The Health API provides access to the Health information that appears in the Health Dashboard. You can use the API operations to get information about events that might affect your Amazon Web S"
    },
    {
      "name": "healthlake",
      "description": "AWS HealthLake is a HIPAA eligibile service that allows customers to store, transform, query, and analyze their FHIR-formatted data in a consistent fashion in the cloud"
    },
    {
      "name": "iam",
      "description": "Identity and Access Management Identity and Access Management (IAM) is a web service for securely controlling access to Amazon Web Services services. With IAM, you can centrally manage users, security"
    },
    {
      "name": "identitystore",
      "description": "The Identity Store service used by IAM Identity Center provides a single place to retrieve all of your identities (users and groups). For more information, see the IAM Identity Center User Guide. This"
    },
    {
      "name": "imagebuilder",
      "description": "EC2 Image Builder is a fully managed Amazon Web Services service that makes it easier to automate the creation, management, and deployment of customized, secure, and up-to-date \"golden\" server images "
    },
    {
      "name": "importexport",
      "description": "AWS Import/Export Service AWS Import/Export accelerates transferring large amounts of data between the AWS cloud and portable storage devices that you mail to us. AWS Import/Export transfers data dire"
    },
    {
      "name": "inspector",
      "description": "Amazon Inspector Amazon Inspector enables you to analyze the behavior of your AWS resources and to identify potential security issues. For more information, see  Amazon Inspector User Guide"
    },
    {
      "name": "inspector-scan",
      "description": "Amazon Inspector Scan is a vulnerability discovery service that scans a provided Software Bill of Materials (SBOM) for security vulnerabilities"
    },
    {
      "name": "inspector2",
      "description": "Amazon Inspector is a vulnerability discovery service that automates continuous scanning for security vulnerabilities within your Amazon EC2, Amazon ECR, and Amazon Web Services Lambda environments"
    },
    {
      "name": "internetmonitor",
      "description": "Amazon CloudWatch Internet Monitor provides visibility into how internet issues impact the performance and availability between your applications hosted on Amazon Web Services and your end users. It c"
    },
    {
      "name": "invoicing",
      "description": "Amazon Web Services Invoice Configuration  You can use Amazon Web Services Invoice Configuration APIs to programmatically create, update, delete, get, and list invoice units. You can also programmatic"
    },
    {
      "name": "iot",
      "description": "IoT IoT provides secure, bi-directional communication between Internet-connected devices (such as sensors, actuators, embedded devices, or smart appliances) and the Amazon Web Services cloud. You can "
    },
    {
      "name": "iot-data",
      "description": "IoT data IoT data enables secure, bi-directional communication between Internet-connected things (such as sensors, actuators, embedded devices, or smart appliances) and the Amazon Web Services cloud. "
    },
    {
      "name": "iot-jobs-data",
      "description": "IoT Jobs is a service that allows you to define a set of jobs — remote operations that are sent to and executed on one or more devices connected to Amazon Web Services IoT Core. For example, you can d"
    },
    {
      "name": "iot1click-devices",
      "description": "Describes all of the AWS IoT 1-Click device-related API operations for the service.\n Also provides sample requests, responses, and errors for the supported web services\n protocols"
    },
    {
      "name": "iot1click-projects",
      "description": "The AWS IoT 1-Click Projects API Reference"
    },
    {
      "name": "iotanalytics",
      "description": "IoT Analytics allows you to collect large amounts of device data, process messages, and store them. You can then query the data and run sophisticated analytics on it. IoT Analytics enables advanced da"
    },
    {
      "name": "iotdeviceadvisor",
      "description": "Amazon Web Services IoT Core Device Advisor is a cloud-based, fully managed test capability for validating IoT devices during device software development. Device Advisor provides pre-built tests that "
    },
    {
      "name": "iotevents",
      "description": "AWS IoT Events monitors your equipment or device fleets for failures or changes in operation, and triggers actions when such events occur. You can use AWS IoT Events API operations to create, read, up"
    },
    {
      "name": "iotevents-data",
      "description": "IoT Events monitors your equipment or device fleets for failures or changes in operation, and triggers actions when such events occur. You can use IoT Events Data API commands to send inputs to detect"
    },
    {
      "name": "iotfleethub",
      "description": "With Fleet Hub for IoT Device Management you can build stand-alone web applications for monitoring the health of your device fleets"
    },
    {
      "name": "iotfleetwise",
      "description": "Amazon Web Services IoT FleetWise is a fully managed service that you can use to collect, model, and transfer vehicle data to the Amazon Web Services cloud at scale. With Amazon Web Services IoT Fleet"
    },
    {
      "name": "iotsecuretunneling",
      "description": "IoT Secure Tunneling IoT Secure Tunneling creates remote connections to devices deployed in the field. For more information about how IoT Secure Tunneling works, see IoT Secure Tunneling"
    },
    {
      "name": "iotsitewise",
      "description": "Welcome to the IoT SiteWise API Reference. IoT SiteWise is an Amazon Web Services service that connects Industrial Internet of Things (IIoT) devices to the power of the Amazon Web Services Cloud. For "
    },
    {
      "name": "iotthingsgraph",
      "description": "AWS IoT Things Graph AWS IoT Things Graph provides an integrated set of tools that enable developers to connect devices and services that use different standards, such as units of measure and communic"
    },
    {
      "name": "iottwinmaker",
      "description": "IoT TwinMaker is a service with which you can build operational digital twins of physical systems. IoT TwinMaker overlays measurements and analysis from real-world sensors, cameras, and enterprise app"
    },
    {
      "name": "iotwireless",
      "description": "AWS IoT Wireless provides bi-directional communication between internet-connected wireless devices and the AWS Cloud. To onboard both LoRaWAN and Sidewalk devices to AWS IoT, use the IoT Wireless API."
    },
    {
      "name": "ivs",
      "description": "Introduction  The Amazon Interactive Video Service (IVS) API is REST compatible, using a standard HTTP API and an Amazon Web Services EventBridge event stream for responses. JSON is used for both requ"
    },
    {
      "name": "ivs-realtime",
      "description": "The Amazon Interactive Video Service (IVS) real-time API is REST compatible, using a standard HTTP API and an AWS EventBridge event stream for responses. JSON is used for both requests and responses, "
    },
    {
      "name": "ivschat",
      "description": "Introduction  The Amazon IVS Chat control-plane API enables you to create and manage Amazon IVS Chat resources. You also need to integrate with the  Amazon IVS Chat Messaging API, to enable users to i"
    },
    {
      "name": "kafka",
      "description": "The operations for managing an Amazon MSK cluster"
    },
    {
      "name": "kafkaconnect"
    },
    {
      "name": "kendra",
      "description": "Amazon Kendra is a service for indexing large document sets"
    },
    {
      "name": "kendra-ranking",
      "description": "Amazon Kendra Intelligent Ranking uses Amazon Kendra semantic search capabilities to intelligently re-rank a search service's results"
    },
    {
      "name": "keyspaces",
      "description": "Amazon Keyspaces (for Apache Cassandra) is a scalable, highly available, and managed Apache Cassandra-compatible database service. Amazon Keyspaces makes it easy to migrate, run, and scale Cassandra w"
    },
    {
      "name": "kinesis",
      "description": "Amazon Kinesis Data Streams Service API Reference Amazon Kinesis Data Streams is a managed service that scales elastically for real-time processing of streaming big data"
    },
    {
      "name": "kinesis-video-archived-media"
    },
    {
      "name": "kinesis-video-media"
    },
    {
      "name": "kinesis-video-signaling",
      "description": "Kinesis Video Streams Signaling Service is a intermediate service that establishes a communication channel for discovering peers, transmitting offers and answers in order to establish peer-to-peer con"
    },
    {
      "name": "kinesis-video-webrtc-storage",
      "description": "Webrtc"
    },
    {
      "name": "kinesisanalytics",
      "description": "Amazon Kinesis Analytics  Overview   This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java appl"
    },
    {
      "name": "kinesisanalyticsv2",
      "description": "Amazon Managed Service for Apache Flink was previously known as Amazon Kinesis Data Analytics for Apache Flink.  Amazon Managed Service for Apache Flink is a fully managed service that you can use to "
    },
    {
      "name": "kinesisvideo"
    },
    {
      "name": "kms",
      "description": "Key Management Service Key Management Service (KMS) is an encryption and key management web service. This guide describes the KMS operations that you can call programmatically. For general information"
    },
    {
      "name": "lakeformation",
      "description": "Lake Formation Defines the public endpoint for the Lake Formation service"
    },
    {
      "name": "lambda",
      "description": "Lambda  Overview  Lambda is a compute service that lets you run code without provisioning or managing servers. Lambda runs your code on a high-availability compute infrastructure and performs all of t"
    },
    {
      "name": "launch-wizard",
      "description": "Launch Wizard offers a guided way of sizing, configuring, and deploying Amazon Web Services resources for third party applications, such as Microsoft SQL Server Always On and HANA based SAP systems, w"
    },
    {
      "name": "lex-models",
      "description": "Amazon Lex Build-Time Actions  Amazon Lex is an AWS service for building conversational voice and text interfaces. Use these actions to create, update, and delete conversational bots for new and exist"
    },
    {
      "name": "lex-runtime",
      "description": "Amazon Lex provides both build and runtime endpoints. Each endpoint provides a set of operations (API). Your conversational bot uses the runtime API to understand user utterances (user input text or v"
    },
    {
      "name": "lexv2-models"
    },
    {
      "name": "lexv2-runtime",
      "description": "This section contains documentation for the Amazon Lex V2 Runtime V2 API operations"
    },
    {
      "name": "license-manager",
      "description": "License Manager makes it easier to manage licenses from software vendors across multiple Amazon Web Services accounts and on-premises servers"
    },
    {
      "name": "license-manager-linux-subscriptions",
      "description": "With License Manager, you can discover and track your commercial Linux subscriptions on running Amazon EC2 instances"
    },
    {
      "name": "license-manager-user-subscriptions",
      "description": "With License Manager, you can create user-based subscriptions to utilize licensed software with a per user subscription fee on Amazon EC2 instances"
    },
    {
      "name": "lightsail",
      "description": "Amazon Lightsail is the easiest way to get started with Amazon Web Services (Amazon Web Services) for developers who need to build websites or web applications. It includes everything you need to laun"
    },
    {
      "name": "location",
      "description": "\"Suite of geospatial services including Maps, Places, Routes, Tracking, and Geofencing\""
    },
    {
      "name": "logs",
      "description": "You can use Amazon CloudWatch Logs to monitor, store, and access your log files from EC2 instances, CloudTrail, and other sources. You can then retrieve the associated log data from CloudWatch Logs us"
    },
    {
      "name": "lookoutequipment",
      "description": "Amazon Lookout for Equipment is a machine learning service that uses advanced analytics to identify anomalies in machines from sensor data for use in predictive maintenance"
    },
    {
      "name": "lookoutmetrics",
      "description": "This is the Amazon Lookout for Metrics API Reference. For an introduction to the service with tutorials for getting started, visit Amazon Lookout for Metrics Developer Guide"
    },
    {
      "name": "lookoutvision",
      "description": "This is the Amazon Lookout for Vision API Reference. It provides descriptions of actions, data types, common parameters, and common errors. Amazon Lookout for Vision enables you to find visual defects"
    },
    {
      "name": "m2",
      "description": "Amazon Web Services Mainframe Modernization provides tools and resources to help you plan and implement migration and modernization from mainframes to Amazon Web Services managed runtime environments."
    },
    {
      "name": "machinelearning",
      "description": "Definition of the public APIs exposed by Amazon Machine Learning"
    },
    {
      "name": "macie2",
      "description": "Amazon Macie"
    },
    {
      "name": "mailmanager",
      "description": "Amazon SES Mail Manager API The Amazon SES Mail Manager API contains operations and data types that comprise the Mail Manager feature of Amazon Simple Email Service (SES). Mail Manager is a set of Ama"
    },
    {
      "name": "managedblockchain",
      "description": "Amazon Managed Blockchain is a fully managed service for creating and managing blockchain networks using open-source frameworks. Blockchain allows you to build applications where multiple parties can "
    },
    {
      "name": "managedblockchain-query",
      "description": "Amazon Managed Blockchain (AMB) Query provides you with convenient access to multi-blockchain network data, which makes it easier for you to extract contextual data related to blockchain activity. You"
    },
    {
      "name": "marketplace-agreement",
      "description": "AWS Marketplace is a curated digital catalog that customers can use to find, buy, deploy, and manage third-party software, data, and services to build solutions and run their businesses. The AWS Marke"
    },
    {
      "name": "marketplace-catalog",
      "description": "Catalog API actions allow you to manage your entities through list, describe, and update capabilities. An entity can be a product or an offer on AWS Marketplace.  You can automate your entity update p"
    },
    {
      "name": "marketplace-deployment",
      "description": "The AWS Marketplace Deployment Service supports the Quick Launch experience, which is a deployment option for software as a service (SaaS) products. Quick Launch simplifies and reduces the time, resou"
    },
    {
      "name": "marketplace-entitlement",
      "description": "AWS Marketplace Entitlement Service This reference provides descriptions of the AWS Marketplace Entitlement Service API. AWS Marketplace Entitlement Service is used to determine the entitlement of a c"
    },
    {
      "name": "marketplace-reporting",
      "description": "The Amazon Web Services Marketplace GetBuyerDashboard API enables you to get a procurement insights dashboard programmatically. The API gets the agreement and cost analysis dashboards with data for al"
    },
    {
      "name": "marketplacecommerceanalytics",
      "description": "Provides AWS Marketplace business intelligence data on-demand"
    },
    {
      "name": "mediaconnect",
      "description": "API for AWS Elemental MediaConnect"
    },
    {
      "name": "mediaconvert",
      "description": "AWS Elemental MediaConvert"
    },
    {
      "name": "medialive",
      "description": "API for AWS Elemental MediaLive"
    },
    {
      "name": "mediapackage",
      "description": "AWS Elemental MediaPackage"
    },
    {
      "name": "mediapackage-vod",
      "description": "AWS Elemental MediaPackage VOD"
    },
    {
      "name": "mediapackagev2",
      "description": "This guide is intended for creating AWS Elemental MediaPackage resources in MediaPackage Version 2 (v2) starting from May 2023. To get started with MediaPackage v2, create your MediaPackage resources."
    },
    {
      "name": "mediastore",
      "description": "An AWS Elemental MediaStore container is a namespace that holds folders and objects. You use a container endpoint to create, read, and delete objects"
    },
    {
      "name": "mediastore-data",
      "description": "An AWS Elemental MediaStore asset is an object, similar to an object in the Amazon S3 service. Objects are the fundamental entities that are stored in AWS Elemental MediaStore"
    },
    {
      "name": "mediatailor",
      "description": "Use the AWS Elemental MediaTailor SDKs and CLI to configure scalable ad insertion and linear channels. With MediaTailor, you can assemble existing content into a linear stream and serve targeted ads t"
    },
    {
      "name": "medical-imaging",
      "description": "This is the AWS HealthImaging API Reference. AWS HealthImaging is a HIPAA eligible service that empowers healthcare providers, life science organizations, and their software partners to store, analyze"
    },
    {
      "name": "memorydb",
      "description": "MemoryDB is a fully managed, Redis OSS-compatible, in-memory database that delivers ultra-fast performance and Multi-AZ durability for modern applications built using microservices architectures. Memo"
    },
    {
      "name": "meteringmarketplace",
      "description": "AWS Marketplace Metering Service This reference provides descriptions of the low-level AWS Marketplace Metering Service API. AWS Marketplace sellers can use this API to submit usage data for custom us"
    },
    {
      "name": "mgh",
      "description": "The AWS Migration Hub API methods help to obtain server and application migration status and integrate your resource-specific migration tool by providing a programmatic interface to Migration Hub. Rem"
    },
    {
      "name": "mgn",
      "description": "The Application Migration Service service"
    },
    {
      "name": "migration-hub-refactor-spaces",
      "description": "Amazon Web Services Migration Hub Refactor Spaces This API reference provides descriptions, syntax, and other details about each of the actions and data types for Amazon Web Services Migration Hub Ref"
    },
    {
      "name": "migrationhub-config",
      "description": "The AWS Migration Hub home region APIs are available specifically for working with your Migration Hub home region. You can use these APIs to determine a home region, as well as to create and work with"
    },
    {
      "name": "migrationhuborchestrator",
      "description": "This API reference provides descriptions, syntax, and other details about each of the actions and data types for AWS Migration Hub Orchestrator. The topic for each action shows the API request paramet"
    },
    {
      "name": "migrationhubstrategy",
      "description": "Migration Hub Strategy Recommendations This API reference provides descriptions, syntax, and other details about each of the actions and data types for Migration Hub Strategy Recommendations (Strategy"
    },
    {
      "name": "mq",
      "description": "Amazon MQ is a managed message broker service for Apache ActiveMQ and RabbitMQ that makes it easy to set up and operate message brokers in the cloud. A message broker allows software applications and "
    },
    {
      "name": "mturk",
      "description": "Amazon Mechanical Turk API Reference"
    },
    {
      "name": "mwaa",
      "description": "Amazon Managed Workflows for Apache Airflow This section contains the Amazon Managed Workflows for Apache Airflow (MWAA) API reference documentation. For more information, see What is Amazon MWAA?.  E"
    },
    {
      "name": "neptune",
      "description": "Amazon Neptune Amazon Neptune is a fast, reliable, fully-managed graph database service that makes it easy to build and run applications that work with highly connected datasets. The core of Amazon Ne"
    },
    {
      "name": "neptune-graph",
      "description": "Neptune Analytics is a new analytics database engine for Amazon Neptune that helps customers get to insights faster by quickly processing large amounts of graph data, invoking popular graph analytic a"
    },
    {
      "name": "neptunedata",
      "description": "Neptune Data API The Amazon Neptune data API provides SDK support for more than 40 of Neptune's data operations, including data loading, query execution, data inquiry, and machine learning. It support"
    },
    {
      "name": "network-firewall",
      "description": "This is the API Reference for Network Firewall. This guide is for developers who need detailed information about the Network Firewall API actions, data types, and errors.    The REST API requires you "
    },
    {
      "name": "networkflowmonitor",
      "description": "Network Flow Monitor is a feature of Amazon CloudWatch Network Monitoring that provides visibility into the performance of network flows for your Amazon Web Services workloads, between instances in su"
    },
    {
      "name": "networkmanager",
      "description": "Amazon Web Services enables you to centrally manage your Amazon Web Services Cloud WAN core network and your Transit Gateway network across Amazon Web Services accounts, Regions, and on-premises locat"
    },
    {
      "name": "networkmonitor",
      "description": "Amazon CloudWatch Network Monitor is an Amazon Web Services active network monitoring service that identifies if a network issues exists within the Amazon Web Services network or your own company netw"
    },
    {
      "name": "notifications",
      "description": "The AWS User Notifications API Reference provides descriptions, API request parameters, and the JSON response for each of the User Notification API actions. User Notification control APIs are currentl"
    },
    {
      "name": "notificationscontacts",
      "description": "AWS User Notifications Contacts is a service that allows you to create and manage email contacts for AWS User Notifications. The AWS User Notifications Contacts API Reference provides descriptions, AP"
    },
    {
      "name": "oam",
      "description": "Use Amazon CloudWatch Observability Access Manager to create and manage links between source accounts and monitoring accounts by using CloudWatch cross-account observability. With CloudWatch cross-acc"
    },
    {
      "name": "observabilityadmin",
      "description": "Amazon CloudWatch Obsersavability Admin to control temletry config for your AWS Organization or account. Telemetry config config to discover and understand the state of telemetry configuration for your "
    },
    {
      "name": "omics",
      "description": "This is the AWS HealthOmics API Reference. For an introduction to the service, see What is AWS HealthOmics? in the AWS HealthOmics User Guide"
    },
    {
      "name": "opensearch",
      "description": "Use the Amazon OpenSearch Service configuration API to create, configure, and manage OpenSearch Service domains. The endpoint for configuration service requests is Region specific: es.region.amazonaws"
    },
    {
      "name": "opensearchserverless",
      "description": "Use the Amazon OpenSearch Serverless API to create, configure, and manage OpenSearch Serverless collections and security policies. OpenSearch Serverless is an on-demand, pre-provisioned serverless con"
    },
    {
      "name": "opsworks",
      "description": "OpsWorks Welcome to the OpsWorks Stacks API Reference. This guide provides descriptions, syntax, and usage examples for OpsWorks Stacks actions and data types, including common parameters and error co"
    },
    {
      "name": "opsworkscm",
      "description": "AWS OpsWorks CM AWS OpsWorks for configuration management (CM) is a service that runs and manages configuration management servers. You can use AWS OpsWorks CM to create and manage AWS OpsWorks for Ch"
    },
    {
      "name": "organizations",
      "description": "Organizations is a web service that enables you to consolidate your multiple Amazon Web Services accounts into an organization and centrally manage your accounts and their resources. This guide provid"
    },
    {
      "name": "osis",
      "description": "Use the Amazon OpenSearch Ingestion API to create and manage ingestion pipelines. OpenSearch Ingestion is a fully managed data collector that delivers real-time log and trace data to OpenSearch Servic"
    },
    {
      "name": "outposts",
      "description": "Amazon Web Services Outposts is a fully managed service that extends Amazon Web Services infrastructure, APIs, and tools to customer premises. By providing local access to Amazon Web Services managed "
    },
    {
      "name": "panorama",
      "description": "AWS Panorama  Overview  This is the AWS Panorama API Reference. For an introduction to the service, see What is AWS Panorama? in the AWS Panorama Developer Guide"
    },
    {
      "name": "partnercentral-selling",
      "description": "AWS Partner Central API for Selling  AWS Partner Central API for Selling Reference Guide  This Amazon Web Services (AWS) Partner Central API reference is designed to help AWS Partners integrate Custom"
    },
    {
      "name": "payment-cryptography",
      "description": "Amazon Web Services Payment Cryptography Control Plane APIs manage encryption keys for use during payment-related cryptographic operations. You can create, import, export, share, manage, and delete ke"
    },
    {
      "name": "payment-cryptography-data",
      "description": "You use the Amazon Web Services Payment Cryptography Data Plane to manage how encryption keys are used for payment-related transaction processing and associated cryptographic operations. You can encry"
    },
    {
      "name": "pca-connector-ad",
      "description": "Amazon Web Services Private CA Connector for Active Directory creates a connector between Amazon Web Services Private CA and Active Directory (AD) that enables you to provision security certificates f"
    },
    {
      "name": "pca-connector-scep",
      "description": "Connector for SCEP creates a connector between Amazon Web Services Private CA and your SCEP-enabled clients and devices. For more information, see Connector for SCEP in the Amazon Web Services Private"
    },
    {
      "name": "pcs",
      "description": "Amazon Web Services Parallel Computing Service (Amazon Web Services PCS) is a managed service that makes it easier for you to run and scale your high performance computing (HPC) workloads, and build s"
    },
    {
      "name": "personalize",
      "description": "Amazon Personalize is a machine learning service that makes it easy to add individualized recommendations to customers"
    },
    {
      "name": "personalize-events",
      "description": "Amazon Personalize can consume real-time user event data, such as stream or click data, and use it for model training either alone or combined with historical data. For more information see Recording "
    },
    {
      "name": "personalize-runtime"
    },
    {
      "name": "pi",
      "description": "Amazon RDS Performance Insights Amazon RDS Performance Insights enables you to monitor and explore different dimensions of database load based on data captured from a running DB instance. The guide pr"
    },
    {
      "name": "pinpoint",
      "description": "Doc Engage API - Amazon Pinpoint API"
    },
    {
      "name": "pinpoint-email",
      "description": "Amazon Pinpoint Email Service Welcome to the Amazon Pinpoint Email API Reference. This guide provides information about the Amazon Pinpoint Email API (version 1.0), including supported operations, dat"
    },
    {
      "name": "pinpoint-sms-voice",
      "description": "Pinpoint SMS and Voice Messaging public facing APIs"
    },
    {
      "name": "pinpoint-sms-voice-v2",
      "description": "Welcome to the AWS End User Messaging SMS and Voice, version 2 API Reference. This guide provides information about AWS End User Messaging SMS and Voice, version 2 API resources, including supported H"
    },
    {
      "name": "pipes",
      "description": "Amazon EventBridge Pipes connects event sources to targets. Pipes reduces the need for specialized knowledge and integration code when developing event driven architectures. This helps ensures consist"
    },
    {
      "name": "polly",
      "description": "Amazon Polly is a web service that makes it easy to synthesize speech from text. The Amazon Polly service provides API operations for synthesizing high-quality speech from plain text and Speech Synthe"
    },
    {
      "name": "pricing",
      "description": "The Amazon Web Services Price List API is a centralized and convenient way to programmatically query Amazon Web Services for services, products, and pricing information. The Amazon Web Services Price "
    },
    {
      "name": "privatenetworks",
      "description": "Amazon Web Services Private 5G is a managed service that makes it easy to deploy, operate, and scale your own private mobile network at your on-premises location. Private 5G provides the pre-configure"
    },
    {
      "name": "proton",
      "description": "This is the Proton Service API Reference. It provides descriptions, syntax and usage examples for each of the actions and data types for the Proton service. The documentation for each action shows the"
    },
    {
      "name": "qapps",
      "description": "The Amazon Q Apps feature capability within Amazon Q Business allows web experience users to create lightweight, purpose-built AI apps to fulfill specific tasks from within their web experience. For e"
    },
    {
      "name": "qbusiness",
      "description": "This is the Amazon Q Business API Reference. Amazon Q Business is a fully managed, generative-AI powered enterprise chat assistant that you can deploy within your organization. Amazon Q Business enhan"
    },
    {
      "name": "qconnect",
      "description": "Amazon Q actions     Amazon Q data types      Powered by Amazon Bedrock: Amazon Web Services implements automated abuse detection. Because Amazon Q in Connect is built on Amazon Bedrock, users can tak"
    },
    {
      "name": "qldb",
      "description": "The resource management API for Amazon QLDB"
    },
    {
      "name": "qldb-session",
      "description": "The transactional data APIs for Amazon QLDB  Instead of interacting directly with this API, we recommend using the QLDB driver or the QLDB shell to execute data transactions on a ledger.   If you are "
    },
    {
      "name": "quicksight",
      "description": "Amazon QuickSight API Reference Amazon QuickSight is a fully managed, serverless business intelligence service for the Amazon Web Services Cloud that makes it easy to extend data and insights to every"
    },
    {
      "name": "ram",
      "description": "This is the Resource Access Manager API Reference. This documentation provides descriptions and syntax for each of the actions and data types in RAM. RAM is a service that helps you securely share you"
    },
    {
      "name": "rbin",
      "description": "This is the Recycle Bin API Reference. This documentation provides descriptions and syntax for each of the actions and data types in Recycle Bin. Recycle Bin is a resource recovery feature that enable"
    },
    {
      "name": "rds",
      "description": "Amazon Relational Database Service  Amazon Relational Database Service (Amazon RDS) is a web service that makes it easier to set up, operate, and scale a relational database in the cloud. It provides "
    },
    {
      "name": "rds-data",
      "description": "RDS Data API Amazon RDS provides an HTTP endpoint to run SQL statements on an Amazon Aurora DB cluster. To run these statements, you use the RDS Data API (Data API). Data API is available with the fol"
    },
    {
      "name": "redshift",
      "description": "Amazon Redshift  Overview  This is an interface reference for Amazon Redshift. It contains documentation for one of the programming or command line interfaces you can use to manage Amazon Redshift clu"
    },
    {
      "name": "redshift-data",
      "description": "You can use the Amazon Redshift Data API to run queries on Amazon Redshift tables. You can run SQL statements, which are committed if the statement succeeds.  For more information about the Amazon Red"
    },
    {
      "name": "redshift-serverless",
      "description": "This is an interface reference for Amazon Redshift Serverless. It contains documentation for one of the programming or command line interfaces you can use to manage Amazon Redshift Serverless.  Amazon"
    },
    {
      "name": "rekognition",
      "description": "This is the API Reference for Amazon Rekognition Image, Amazon Rekognition Custom Labels, Amazon Rekognition Stored Video, Amazon Rekognition Streaming Video. It provides descriptions of actions, data"
    },
    {
      "name": "repostspace",
      "description": "AWS re:Post Private is a private version of AWS re:Post for enterprises with Enterprise Support or Enterprise On-Ramp Support plans. It provides access to knowledge and experts to accelerate cloud ado"
    },
    {
      "name": "resiliencehub",
      "description": "Resilience Hub helps you proactively prepare and protect your Amazon Web Services applications from disruptions. It offers continual resiliency assessment and validation that integrates into your soft"
    },
    {
      "name": "resource-explorer-2",
      "description": "Amazon Web Services Resource Explorer is a resource search and discovery service. By using Resource Explorer, you can explore your resources using an internet search engine-like experience. Examples o"
    },
    {
      "name": "resource-groups",
      "description": "Resource Groups lets you organize Amazon Web Services resources such as Amazon Elastic Compute Cloud instances, Amazon Relational Database Service databases, and Amazon Simple Storage Service buckets "
    },
    {
      "name": "resourcegroupstaggingapi",
      "description": "Resource Groups Tagging API"
    },
    {
      "name": "robomaker",
      "description": "This section provides documentation for the AWS RoboMaker API operations"
    },
    {
      "name": "rolesanywhere",
      "description": "Identity and Access Management Roles Anywhere provides a secure way for your workloads such as servers, containers, and applications that run outside of Amazon Web Services to obtain temporary Amazon "
    },
    {
      "name": "route53",
      "description": "Amazon Route 53 is a highly available and scalable Domain Name System (DNS) web service. You can use Route 53 to:   Register domain names. For more information, see How domain registration works.   Ro"
    },
    {
      "name": "route53-recovery-cluster",
      "description": "Welcome to the Routing Control (Recovery Cluster) API Reference Guide for Amazon Route 53 Application Recovery Controller. With Route 53 ARC, you can use routing control with extreme reliability to re"
    },
    {
      "name": "route53-recovery-control-config",
      "description": "Recovery Control Configuration API Reference for Amazon Route 53 Application Recovery Controller"
    },
    {
      "name": "route53-recovery-readiness",
      "description": "Recovery readiness"
    },
    {
      "name": "route53domains",
      "description": "Amazon Route 53 API actions let you register domain names and perform related operations"
    },
    {
      "name": "route53profiles",
      "description": "With Amazon Route 53 Profiles you can share Route 53 configurations with VPCs and AWS accounts"
    },
    {
      "name": "route53resolver",
      "description": "When you create a VPC using Amazon VPC, you automatically get DNS resolution within the VPC from Route 53 Resolver. By default, Resolver answers DNS queries for VPC domain names such as domain names f"
    },
    {
      "name": "rum",
      "description": "With Amazon CloudWatch RUM, you can perform real-user monitoring to collect client-side data about your web application performance from actual user sessions in real time. The data collected includes "
    },
    {
      "name": "s3control",
      "description": "Amazon Web Services S3 Control provides access to Amazon S3 control plane actions"
    },
    {
      "name": "s3outposts",
      "description": "Amazon S3 on Outposts provides access to S3 on Outposts operations"
    },
    {
      "name": "s3tables",
      "description": "An Amazon S3 table represents a structured dataset consisting of tabular data in Apache Parquet format and related metadata. This data is stored inside an S3 table as a subresource. All tables in a ta"
    },
    {
      "name": "sagemaker",
      "description": "Provides APIs for creating and managing SageMaker resources.  Other Resources:    SageMaker Developer Guide     Amazon Augmented AI Runtime API Reference"
    },
    {
      "name": "sagemaker-a2i-runtime",
      "description": "Amazon Augmented AI (Amazon A2I) adds the benefit of human judgment to any machine learning application. When an AI application can't evaluate data with a high degree of confidence, human reviewers ca"
    },
    {
      "name": "sagemaker-edge",
      "description": "SageMaker Edge Manager dataplane service for communicating with active agents"
    },
    {
      "name": "sagemaker-featurestore-runtime",
      "description": "Contains all data plane API operations and data types for the Amazon SageMaker Feature Store. Use this API to put, delete, and retrieve (get) features from a feature store. Use the following operation"
    },
    {
      "name": "sagemaker-geospatial",
      "description": "Provides APIs for creating and managing SageMaker geospatial resources"
    },
    {
      "name": "sagemaker-metrics",
      "description": "Contains all data plane API operations and data types for Amazon SageMaker Metrics. Use these APIs to put and retrieve (get) features related to your training run.    BatchPutMetrics"
    },
    {
      "name": "sagemaker-runtime",
      "description": "The Amazon SageMaker runtime API"
    },
    {
      "name": "savingsplans",
      "description": "Savings Plans are a pricing model that offer significant savings on Amazon Web Services usage (for example, on Amazon EC2 instances). You commit to a consistent amount of usage per hour, in the specif"
    },
    {
      "name": "scheduler",
      "description": "Amazon EventBridge Scheduler is a serverless scheduler that allows you to create, run, and manage tasks from one central, managed service. EventBridge Scheduler delivers your tasks reliably, with buil"
    },
    {
      "name": "schemas",
      "description": "Amazon EventBridge Schema Registry"
    },
    {
      "name": "sdb",
      "description": "Amazon SimpleDB is a web service providing the core database functions of data indexing and querying in the cloud. By offloading the time and effort associated with building and operating a web-scale "
    },
    {
      "name": "secretsmanager",
      "description": "Amazon Web Services Secrets Manager Amazon Web Services Secrets Manager provides a service to enable you to store, manage, and retrieve, secrets. This guide provides descriptions of the Secrets Manage"
    },
    {
      "name": "security-ir",
      "description": "This guide provides documents the action and response elements for customer use of the service"
    },
    {
      "name": "securityhub",
      "description": "Security Hub provides you with a comprehensive view of your security state in Amazon Web Services and helps you assess your Amazon Web Services environment against security industry standards and best"
    },
    {
      "name": "securitylake",
      "description": "Amazon Security Lake is a fully managed security data lake service. You can use Security Lake to automatically centralize security data from cloud, on-premises, and custom sources into a data lake tha"
    },
    {
      "name": "serverlessrepo",
      "description": "The AWS Serverless Application Repository makes it easy for developers and enterprises to quickly find\n and deploy serverless applications in the AWS Cloud. For more information about serverless appli"
    },
    {
      "name": "service-quotas",
      "description": "With Service Quotas, you can view and manage your quotas easily as your Amazon Web Services workloads grow. Quotas, also referred to as limits, are the maximum number of resources that you can create "
    },
    {
      "name": "servicecatalog",
      "description": "Service Catalog  Service Catalog enables organizations to create and manage catalogs of IT services that are approved for Amazon Web Services. To get the most out of this documentation, you should be "
    },
    {
      "name": "servicecatalog-appregistry",
      "description": "Amazon Web Services Service Catalog AppRegistry enables organizations to understand the application context of their Amazon Web Services resources. AppRegistry provides a repository of your applicatio"
    },
    {
      "name": "servicediscovery",
      "description": "Cloud Map With Cloud Map, you can configure public DNS, private DNS, or HTTP namespaces that your microservice applications run in. When an instance becomes available, you can call the Cloud Map API t"
    },
    {
      "name": "ses",
      "description": "Amazon Simple Email Service  This document contains reference information for the Amazon Simple Email Service (Amazon SES) API, version 2010-12-01. This document is best used in conjunction with the A"
    },
    {
      "name": "sesv2",
      "description": "Amazon SES API v2  Amazon SES is an Amazon Web Services service that you can use to send email messages to your customers. If you're new to Amazon SES API v2, you might find it helpful to review the A"
    },
    {
      "name": "shield",
      "description": "Shield Advanced This is the Shield Advanced API Reference. This guide is for developers who need detailed information about the Shield Advanced API actions, data types, and errors. For detailed inform"
    },
    {
      "name": "signer",
      "description": "AWS Signer is a fully managed code-signing service to help you ensure the trust and integrity of your code.  Signer supports the following applications: With code signing for AWS Lambda, you can sign "
    },
    {
      "name": "simspaceweaver",
      "description": "SimSpace Weaver (SimSpace Weaver) is a service that you can use to build and run large-scale spatial simulations in the Amazon Web Services Cloud. For example, you can create crowd simulations, large "
    },
    {
      "name": "sms",
      "description": "Product update  We recommend Amazon Web Services Application Migration Service (Amazon Web Services MGN) as the primary migration service for lift-and-shift migrations. If Amazon Web Services MGN is u"
    },
    {
      "name": "sms-voice",
      "description": "Pinpoint SMS and Voice Messaging public facing APIs"
    },
    {
      "name": "snow-device-management",
      "description": "Amazon Web Services Snow Device Management documentation"
    },
    {
      "name": "snowball",
      "description": "The Amazon Web Services Snow Family provides a petabyte-scale data transport solution that uses secure devices to transfer large amounts of data between your on-premises data centers and Amazon Simple"
    },
    {
      "name": "sns",
      "description": "Amazon Simple Notification Service Amazon Simple Notification Service (Amazon SNS) is a web service that enables you to build distributed web-enabled applications. Applications can use Amazon SNS to e"
    },
    {
      "name": "socialmessaging",
      "description": "Amazon Web Services End User Messaging Social, also referred to as Social messaging, is a messaging service that enables application developers to incorporate WhatsApp into their existing workflows. T"
    },
    {
      "name": "sqs",
      "description": "Welcome to the Amazon SQS API Reference. Amazon SQS is a reliable, highly-scalable hosted queue for storing messages as they travel between applications or microservices. Amazon SQS moves data between"
    },
    {
      "name": "ssm",
      "description": "Amazon Web Services Systems Manager is the operations hub for your Amazon Web Services applications and resources and a secure end-to-end management solution for hybrid cloud environments that enables"
    },
    {
      "name": "ssm-contacts",
      "description": "Systems Manager Incident Manager is an incident management console designed to help users mitigate and recover from incidents affecting their Amazon Web Services-hosted applications. An incident is an"
    },
    {
      "name": "ssm-incidents",
      "description": "Systems Manager Incident Manager is an incident management console designed to help users mitigate and recover from incidents affecting their Amazon Web Services-hosted applications. An incident is an"
    },
    {
      "name": "ssm-quicksetup",
      "description": "Quick Setup helps you quickly configure frequently used services and features with recommended best practices. Quick Setup simplifies setting up services, including Systems Manager, by automating comm"
    },
    {
      "name": "ssm-sap",
      "description": "This API reference provides descriptions, syntax, and other details about each of the actions and data types for AWS Systems Manager for SAP. The topic for each action shows the API request parameters"
    },
    {
      "name": "sso",
      "description": "AWS IAM Identity Center (successor to AWS Single Sign-On) Portal is a web service that makes it easy for you to assign user access to IAM Identity Center resources such as the AWS access portal. Users"
    },
    {
      "name": "sso-admin",
      "description": "IAM Identity Center (successor to Single Sign-On) helps you securely create, or connect, your workforce identities and manage their access centrally across Amazon Web Services accounts and application"
    },
    {
      "name": "sso-oidc",
      "description": "IAM Identity Center OpenID Connect (OIDC) is a web service that enables a client (such as CLI or a native application) to register with IAM Identity Center. The service also enables the client to fetc"
    },
    {
      "name": "stepfunctions",
      "description": "Step Functions Step Functions coordinates the components of distributed applications and microservices using visual workflows. You can use Step Functions to build applications from individual componen"
    },
    {
      "name": "storagegateway",
      "description": "Storage Gateway Service  Amazon FSx File Gateway is no longer available to new customers. Existing customers of FSx File Gateway can continue to use the service normally. For capabilities similar to F"
    },
    {
      "name": "sts",
      "description": "Security Token Service Security Token Service (STS) enables you to request temporary, limited-privilege credentials for users. This guide provides descriptions of the STS API. For more information abo"
    },
    {
      "name": "supplychain",
      "description": "AWS Supply Chain is a cloud-based application that works with your enterprise resource planning (ERP) and supply chain management systems. Using AWS Supply Chain, you can connect and extract your inve"
    },
    {
      "name": "support",
      "description": "Amazon Web Services Support The Amazon Web Services Support API Reference is intended for programmers who need detailed information about the Amazon Web Services Support operations and data types. You"
    },
    {
      "name": "support-app",
      "description": "Amazon Web Services Support App in Slack You can use the Amazon Web Services Support App in Slack API to manage your support cases in Slack for your Amazon Web Services account. After you configure yo"
    },
    {
      "name": "swf",
      "description": "Amazon Simple Workflow Service The Amazon Simple Workflow Service (Amazon SWF) makes it easy to build applications that use Amazon's cloud to coordinate work across distributed components. In Amazon S"
    },
    {
      "name": "synthetics",
      "description": "Amazon CloudWatch Synthetics You can use Amazon CloudWatch Synthetics to continually monitor your services. You can create and manage canaries, which are modular, lightweight scripts that monitor your"
    },
    {
      "name": "taxsettings",
      "description": "You can use the tax setting API to programmatically set, modify, and delete the tax registration number (TRN), associated business legal name, and address (Collectively referred to as \"TRN information"
    },
    {
      "name": "textract",
      "description": "Amazon Textract detects and analyzes text in documents and converts it into machine-readable text. This is the API reference documentation for Amazon Textract"
    },
    {
      "name": "timestream-influxdb",
      "description": "Amazon Timestream for InfluxDB is a managed time-series database engine that makes it easy for application developers and DevOps teams to run InfluxDB databases on AWS for near real-time time-series a"
    },
    {
      "name": "timestream-query",
      "description": "Amazon Timestream Query"
    },
    {
      "name": "timestream-write",
      "description": "Amazon Timestream Write Amazon Timestream is a fast, scalable, fully managed time-series database service that makes it easy to store and analyze trillions of time-series data points per day. With Tim"
    },
    {
      "name": "tnb",
      "description": "Amazon Web Services Telco Network Builder (TNB) is a network automation service that helps you deploy and manage telecom networks. AWS TNB helps you with the lifecycle management of your telecommunica"
    },
    {
      "name": "transcribe",
      "description": "Amazon Transcribe offers three main types of batch transcription: Standard, Medical, and Call Analytics.    Standard transcriptions are the most common option. Refer to for details.    Medical transcr"
    },
    {
      "name": "transfer",
      "description": "Transfer Family is a fully managed service that enables the transfer of files over the File Transfer Protocol (FTP), File Transfer Protocol over SSL (FTPS), or Secure Shell (SSH) File Transfer Protoco"
    },
    {
      "name": "translate",
      "description": "Provides translation of the input content from the source language to the target language"
    },
    {
      "name": "trustedadvisor",
      "description": "TrustedAdvisor Public API"
    },
    {
      "name": "verifiedpermissions",
      "description": "Amazon Verified Permissions is a permissions management service from Amazon Web Services. You can use Verified Permissions to manage permissions for your application, and authorize user access based o"
    },
    {
      "name": "voice-id",
      "description": "Amazon Connect Voice ID provides real-time caller authentication and fraud risk detection, which make voice interactions in contact centers more secure and efficient"
    },
    {
      "name": "vpc-lattice",
      "description": "Amazon VPC Lattice is a fully managed application networking service that you use to connect, secure, and monitor all of your services across multiple accounts and virtual private clouds (VPCs). Amazo"
    },
    {
      "name": "waf",
      "description": "This is AWS WAF Classic documentation. For more information, see AWS WAF Classic in the developer guide.  For the latest version of AWS WAF, use the AWS WAFV2 API and see the AWS WAF Developer Guide. "
    },
    {
      "name": "waf-regional",
      "description": "This is AWS WAF Classic Regional documentation. For more information, see AWS WAF Classic in the developer guide.  For the latest version of AWS WAF, use the AWS WAFV2 API and see the AWS WAF Develope"
    },
    {
      "name": "wafv2",
      "description": "WAF  This is the latest version of the WAF API, released in November, 2019. The names of the entities that you use to access this API, like endpoints and namespaces, all have the versioning informatio"
    },
    {
      "name": "wellarchitected",
      "description": "Well-Architected Tool This is the Well-Architected Tool API Reference. The WA Tool API provides programmatic access to the Well-Architected Tool in the Amazon Web Services Management Console. For info"
    },
    {
      "name": "wisdom",
      "description": "Amazon Connect Wisdom delivers agents the information they need to solve customer issues as they're actively speaking with customers. Agents can search across connected repositories from within their "
    },
    {
      "name": "workdocs",
      "description": "The Amazon WorkDocs API is designed for the following use cases:   File Migration: File migration applications are supported for users who want to migrate their files from an on-premises or off-premis"
    },
    {
      "name": "workmail",
      "description": "WorkMail is a secure, managed business email and calendaring service with support for existing desktop and mobile email clients. You can access your email, contacts, and calendars using Microsoft Outl"
    },
    {
      "name": "workmailmessageflow",
      "description": "The WorkMail Message Flow API provides access to email messages as they are being sent and received by a WorkMail organization"
    },
    {
      "name": "workspaces",
      "description": "Amazon WorkSpaces Service Amazon WorkSpaces enables you to provision virtual, cloud-based Microsoft Windows or Amazon Linux desktops for your users, known as WorkSpaces. WorkSpaces eliminates the need"
    },
    {
      "name": "workspaces-thin-client",
      "description": "Amazon WorkSpaces Thin Client is an affordable device built to work with Amazon Web Services End User Computing (EUC) virtual desktops to provide users with a complete cloud desktop solution. WorkSpac"
    },
    {
      "name": "workspaces-web",
      "description": "Amazon WorkSpaces Secure Browser is a low cost, fully managed WorkSpace built specifically to facilitate secure, web-based workloads. WorkSpaces Secure Browser makes it easy for customers to safely pr"
    },
    {
      "name": "xray",
      "description": "Amazon Web Services X-Ray provides APIs for managing debug traces and retrieving service maps and other data created by processing those traces"
    },
    {
      "name": "s3api"
    },
    {
      "name": "s3",
      "description": "This section explains prominent concepts and notations in the set of high-level S3 commands provided.\n\nIf you are looking for the low level S3 commands for the CLI, please see the\n``s3api`` command `r"
    },
    {
      "name": "configure",
      "description": "Configure AWS CLI options. If this command is run with no\narguments, you will be prompted for configuration values such as your AWS\nAccess Key Id and your AWS Secret Access Key.  You can configure a n"
    },
    {
      "name": "deploy",
      "description": "CodeDeploy is a deployment service that automates application deployments to Amazon EC2 instances, on-premises instances running in your own facility, serverless Lambda functions, or applications in a"
    },
    {
      "name": "configservice",
      "description": "Config Config provides a way to keep track of the configurations of all the Amazon Web Services resources associated with your Amazon Web Services account. You can use Config to get the current and hi"
    },
    {
      "name": "opsworks-cm",
      "description": "AWS OpsWorks CM AWS OpsWorks for configuration management (CM) is a service that runs and manages configuration management servers. You can use AWS OpsWorks CM to create and manage AWS OpsWorks for Ch"
    },
    {
      "name": "runtime.sagemaker",
      "description": "The Amazon SageMaker runtime API"
    },
    {
      "name": "history",
      "description": "Commands to interact with the history of AWS CLI commands ran over time. To record the history of AWS CLI commands set ``cli_history`` to ``enabled`` in the ``~/.aws/config`` file. This can be done by"
    }
  ],
  "options": [
    {
      "names": [
        "--profile"
      ],
      "description": "Use a specific profile from your credential file",
      "takes_arg": true
    }
  ]
}