-
Notifications
You must be signed in to change notification settings - Fork 0
/
awsc-mezz-data.parsed.json
2307 lines (2307 loc) · 64.3 KB
/
awsc-mezz-data.parsed.json
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
{
"items": [
{
"uid": "a2i",
"title": "Amazon Augmented AI",
"subtitle": "Easily implement human review of machine learning predictions",
"match": "a2i Amazon Augmented AI",
"arg": "/a2i/home",
"autocomplete": "Amazon Augmented AI",
"icon": {
"path": "./icons/a2i.png"
}
},
{
"uid": "a4b",
"title": "Alexa for Business",
"subtitle": "Alexa for Business Provides Tools to Manage Alexa in Your Organization",
"match": "a4b Alexa for Business",
"arg": "/a4b/home",
"autocomplete": "Alexa for Business",
"icon": {
"path": "./icons/a4b.png"
}
},
{
"uid": "access-analyzer",
"title": "Access Analyzer",
"match": "access-analyzer Access Analyzer",
"arg": "/access-analyzer/home",
"autocomplete": "Access Analyzer",
"icon": {
"path": "./icons/access-analyzer.png"
}
},
{
"uid": "acm-pca",
"title": "ACM Private CA",
"match": "acm-pca ACM Private CA",
"arg": "/acm-pca/home",
"autocomplete": "ACM Private CA",
"icon": {
"path": "./icons/acm-pca.png"
}
},
{
"uid": "acm",
"title": "Certificate Manager",
"subtitle": "Provision, Manage, and Deploy SSL/TLS Certificates",
"match": "acm Certificate Manager",
"arg": "/acm/home",
"autocomplete": "Certificate Manager",
"icon": {
"path": "./icons/acm.png"
}
},
{
"uid": "activate",
"title": "Activate for Startups",
"subtitle": "AWS Activate provides resources to help startups build and grow on AWS. ",
"match": "activate Activate for Startups",
"arg": "/activate/home",
"autocomplete": "Activate for Startups",
"icon": {
"path": "./icons/activate.png"
}
},
{
"uid": "aesop",
"title": "Elemental Appliances & Software",
"subtitle": "On-premises solutions for video processing and delivery",
"match": "aesop Elemental Appliances & Software",
"arg": "/elemental-appliances-software/home",
"autocomplete": "Elemental Appliances & Software",
"icon": {
"path": "./icons/aesop.png"
}
},
{
"uid": "amplify",
"title": "AWS Amplify",
"subtitle": "AWS Amplify is a complete platform—frameworks & tools and app services—for developing, building, testing, and running mobile and web apps",
"match": "amplify AWS Amplify",
"arg": "/amplify/home",
"autocomplete": "AWS Amplify",
"icon": {
"path": "./icons/amplify.png"
}
},
{
"uid": "ag",
"title": "API Gateway",
"subtitle": "Build, Deploy and Manage APIs",
"match": "ag API Gateway",
"arg": "/apigateway/home",
"autocomplete": "API Gateway",
"icon": {
"path": "./icons/ag.png"
}
},
{
"uid": "appconfig",
"title": "AWS AppConfig",
"subtitle": "With AWS AppConfig, make updates to application configurations at runtime.",
"match": "appconfig AWS AppConfig",
"arg": "/systems-manager/appconfig/home",
"autocomplete": "AWS AppConfig",
"icon": {
"path": "./icons/appconfig.png"
}
},
{
"uid": "appflow",
"title": "Amazon AppFlow",
"subtitle": "Amazon AppFlow integrates apps and automates data flows without code.",
"match": "appflow Amazon AppFlow",
"arg": "/appflow/home",
"autocomplete": "Amazon AppFlow",
"icon": {
"path": "./icons/appflow.png"
}
},
{
"uid": "appmesh",
"title": "AWS App Mesh",
"subtitle": "Easily monitor and control microservices",
"match": "appmesh AWS App Mesh",
"arg": "/appmesh/home",
"autocomplete": "AWS App Mesh",
"icon": {
"path": "./icons/appmesh.png"
}
},
{
"uid": "appstream2",
"title": "AppStream 2.0",
"subtitle": "Stream desktop applications securely to any web browser",
"match": "appstream2 AppStream 2.0",
"arg": "/appstream2/home",
"autocomplete": "AppStream 2.0",
"icon": {
"path": "./icons/appstream2.png"
}
},
{
"uid": "appsync",
"title": "AWS AppSync",
"subtitle": "Real-Time Data Sync Using GraphQL for Mobile & Web Apps, Online or Offline",
"match": "appsync AWS AppSync",
"arg": "/appsync/home",
"autocomplete": "AWS AppSync",
"icon": {
"path": "./icons/appsync.png"
}
},
{
"uid": "artifact",
"title": "Artifact",
"subtitle": "AWS Compliance Reports and Agreements",
"match": "artifact Artifact",
"arg": "/artifact/home",
"autocomplete": "Artifact",
"icon": {
"path": "./icons/artifact.png"
}
},
{
"uid": "athena",
"title": "Athena",
"subtitle": "Query Data in S3 using SQL",
"match": "athena Athena",
"arg": "/athena/home",
"autocomplete": "Athena",
"icon": {
"path": "./icons/athena.png"
}
},
{
"uid": "backup",
"title": "AWS Backup",
"subtitle": "AWS Backup centrally manages and automates backups across AWS services",
"match": "backup AWS Backup",
"arg": "/backup/home",
"autocomplete": "AWS Backup",
"icon": {
"path": "./icons/backup.png"
}
},
{
"uid": "batch",
"title": "Batch",
"subtitle": "Fully managed batch processing at any scale",
"match": "batch Batch",
"arg": "/batch/home",
"autocomplete": "Batch",
"icon": {
"path": "./icons/batch.png"
}
},
{
"uid": "b",
"title": "Billing",
"subtitle": "Access, analyze, and control your AWS costs and usage.",
"match": "b Billing",
"arg": "/billing/home",
"autocomplete": "Billing",
"icon": {
"path": "./icons/b.png"
}
},
{
"uid": "braket",
"title": "Amazon Braket",
"subtitle": "Service for exploring, evaluating, and experimenting with quantum computing.",
"match": "braket Amazon Braket",
"arg": "/braket/home",
"autocomplete": "Amazon Braket",
"icon": {
"path": "./icons/braket.png"
}
},
{
"uid": "budgets",
"title": "AWS Budgets",
"subtitle": "Set Custom Budgets and Receive Alerts",
"match": "budgets AWS Budgets",
"arg": "/billing/home#/budgets#/home",
"autocomplete": "AWS Budgets",
"icon": {
"path": "./icons/budgets.png"
}
},
{
"uid": "sc_unlisted",
"title": "Service Catalog",
"subtitle": "Create and Use Standardized Products",
"match": "sc_unlisted Service Catalog",
"arg": "/catalog/home",
"autocomplete": "Service Catalog",
"icon": {
"path": "./icons/sc_unlisted.png"
}
},
{
"uid": "chatbot",
"title": "AWS Chatbot",
"subtitle": "ChatOps for AWS",
"match": "chatbot AWS Chatbot",
"arg": "/chatbot/home",
"autocomplete": "AWS Chatbot",
"icon": {
"path": "./icons/chatbot.png"
}
},
{
"uid": "chime",
"title": "Amazon Chime",
"subtitle": "Amazon Chime is a communications service that transforms online meetings",
"match": "chime Amazon Chime",
"arg": "https://chime.aws.amazon.com",
"autocomplete": "Amazon Chime",
"icon": {
"path": "./icons/chime.png"
}
},
{
"uid": "cloud9",
"title": "Cloud9",
"subtitle": "A Cloud IDE for Writing, Running, and Debugging Code",
"match": "cloud9 Cloud9",
"arg": "/cloud9/home",
"autocomplete": "Cloud9",
"icon": {
"path": "./icons/cloud9.png"
}
},
{
"uid": "cfo",
"title": "CloudFormation",
"subtitle": "Create and Manage Resources with Templates",
"match": "cfo CloudFormation",
"arg": "/cloudformation/home",
"autocomplete": "CloudFormation",
"icon": {
"path": "./icons/cfo.png"
}
},
{
"uid": "cfr",
"title": "CloudFront",
"subtitle": "Global Content Delivery Network",
"match": "cfr CloudFront",
"arg": "/cloudfront/home",
"autocomplete": "CloudFront",
"icon": {
"path": "./icons/cfr.png"
}
},
{
"uid": "cloudhsm",
"title": "CloudHSM",
"subtitle": "Managed Hardware Security Modules in the Cloud",
"match": "cloudhsm CloudHSM",
"arg": "/cloudhsm/home",
"autocomplete": "CloudHSM",
"icon": {
"path": "./icons/cloudhsm.png"
}
},
{
"uid": "cloudmap",
"title": "AWS Cloud Map",
"subtitle": "Build a dynamic map of your cloud",
"match": "cloudmap AWS Cloud Map",
"arg": "/cloudmap/home",
"autocomplete": "AWS Cloud Map",
"icon": {
"path": "./icons/cloudmap.png"
}
},
{
"uid": "cs",
"title": "CloudSearch",
"subtitle": "Managed Search Service",
"match": "cs CloudSearch",
"arg": "/cloudsearch/home",
"autocomplete": "CloudSearch",
"icon": {
"path": "./icons/cs.png"
}
},
{
"uid": "ctr",
"title": "CloudTrail",
"subtitle": "Track User Activity and API Usage",
"match": "ctr CloudTrail",
"arg": "/cloudtrail/home",
"autocomplete": "CloudTrail",
"icon": {
"path": "./icons/ctr.png"
}
},
{
"uid": "cw",
"title": "CloudWatch",
"subtitle": "Monitor Resources and Applications",
"match": "cw CloudWatch",
"arg": "/cloudwatch/home",
"autocomplete": "CloudWatch",
"icon": {
"path": "./icons/cw.png"
}
},
{
"uid": "codeartifact",
"title": "CodeArtifact",
"subtitle": "Secure, scalable, and cost-effective artifact management for software development",
"match": "codeartifact CodeArtifact",
"arg": "/codesuite/codeartifact/home",
"autocomplete": "CodeArtifact",
"icon": {
"path": "./icons/codeartifact.png"
}
},
{
"uid": "codebuild",
"title": "CodeBuild",
"subtitle": "Build and Test Code",
"match": "codebuild CodeBuild",
"arg": "/codesuite/codebuild/home",
"autocomplete": "CodeBuild",
"icon": {
"path": "./icons/codebuild.png"
}
},
{
"uid": "cc",
"title": "CodeCommit",
"subtitle": "Store Code in Private Git Repositories",
"match": "cc CodeCommit",
"arg": "/codesuite/codecommit/home",
"autocomplete": "CodeCommit",
"icon": {
"path": "./icons/cc.png"
}
},
{
"uid": "cd",
"title": "CodeDeploy",
"subtitle": "Automate Code Deployments",
"match": "cd CodeDeploy",
"arg": "/codesuite/codedeploy/home",
"autocomplete": "CodeDeploy",
"icon": {
"path": "./icons/cd.png"
}
},
{
"uid": "cp",
"title": "CodePipeline",
"subtitle": "Release Software using Continuous Delivery",
"match": "cp CodePipeline",
"arg": "/codesuite/codepipeline/home",
"autocomplete": "CodePipeline",
"icon": {
"path": "./icons/cp.png"
}
},
{
"uid": "codestar",
"title": "CodeStar",
"subtitle": "Quickly develop, build, and deploy applications",
"match": "codestar CodeStar",
"arg": "/codesuite/codestar/home",
"autocomplete": "CodeStar",
"icon": {
"path": "./icons/codestar.png"
}
},
{
"uid": "comprehend",
"title": "Amazon Comprehend",
"subtitle": "Analyze Unstructured Text",
"match": "comprehend Amazon Comprehend",
"arg": "/comprehend/v2/home",
"autocomplete": "Amazon Comprehend",
"icon": {
"path": "./icons/comprehend.png"
}
},
{
"uid": "compute-optimizer",
"title": "AWS Compute Optimizer",
"subtitle": "Recommend optimal AWS Compute resources for your workloads",
"match": "compute-optimizer AWS Compute Optimizer",
"arg": "/compute-optimizer/home",
"autocomplete": "AWS Compute Optimizer",
"icon": {
"path": "./icons/compute-optimizer.png"
}
},
{
"uid": "cfg",
"title": "Config",
"subtitle": "Track Resource Inventory and Changes",
"match": "cfg Config",
"arg": "/config/home",
"autocomplete": "Config",
"icon": {
"path": "./icons/cfg.png"
}
},
{
"uid": "cfgr",
"title": "Config Rules",
"match": "cfgr Config Rules",
"arg": "/configrules/home",
"autocomplete": "Config Rules",
"icon": {
"path": "./icons/cfgr.png"
}
},
{
"uid": "home",
"title": "Console Home",
"match": "home Console Home",
"arg": "/console/home",
"autocomplete": "Console Home",
"icon": {
"path": "./icons/home.png"
}
},
{
"uid": "controltower",
"title": "Control Tower",
"subtitle": "The easiest way to set up and govern a secure, compliant multi-account environment",
"match": "controltower Control Tower",
"arg": "/controltower/home",
"autocomplete": "Control Tower",
"icon": {
"path": "./icons/controltower.png"
}
},
{
"uid": "cost-management",
"title": "AWS Cost Explorer",
"subtitle": "Visualize and Explore Your AWS Costs and Usage",
"match": "cost-management AWS Cost Explorer",
"arg": "/cost-management/home",
"autocomplete": "AWS Cost Explorer",
"icon": {
"path": "./icons/cost-management.png"
}
},
{
"uid": "cr",
"title": "AWS Cost Explorer",
"match": "cr AWS Cost Explorer",
"arg": "/cost-reports/home",
"autocomplete": "AWS Cost Explorer",
"icon": {
"path": "./icons/cr.png"
}
},
{
"uid": "dataexchange",
"title": "AWS Data Exchange",
"subtitle": "Easily exchange data in the cloud",
"match": "dataexchange AWS Data Exchange",
"arg": "/dataexchange/home",
"autocomplete": "AWS Data Exchange",
"icon": {
"path": "./icons/dataexchange.png"
}
},
{
"uid": "dp",
"title": "Data Pipeline",
"subtitle": "Orchestration for Data-Driven Workflows",
"match": "dp Data Pipeline",
"arg": "/datapipeline/home",
"autocomplete": "Data Pipeline",
"icon": {
"path": "./icons/dp.png"
}
},
{
"uid": "datasync",
"title": "DataSync",
"subtitle": "DataSync simplifies, automates, and accelerates moving data",
"match": "datasync DataSync",
"arg": "/datasync/home",
"autocomplete": "DataSync",
"icon": {
"path": "./icons/datasync.png"
}
},
{
"uid": "deepcomposer",
"title": "AWS DeepComposer",
"subtitle": "AWS DeepComposer allows developers of all skill levels to get started with Generative AI.",
"match": "deepcomposer AWS DeepComposer",
"arg": "/deepcomposer/home",
"autocomplete": "AWS DeepComposer",
"icon": {
"path": "./icons/deepcomposer.png"
}
},
{
"uid": "deeplens",
"title": "AWS DeepLens",
"subtitle": "Deep Learning Enabled Video Camera",
"match": "deeplens AWS DeepLens",
"arg": "/deeplens/home",
"autocomplete": "AWS DeepLens",
"icon": {
"path": "./icons/deeplens.png"
}
},
{
"uid": "deepracer",
"title": "AWS DeepRacer",
"subtitle": "Fully autonomous 1/18th scale race car, driven by machine learning",
"match": "deepracer AWS DeepRacer",
"arg": "/deepracer/home",
"autocomplete": "AWS DeepRacer",
"icon": {
"path": "./icons/deepracer.png"
}
},
{
"uid": "detective",
"title": "Detective",
"subtitle": "Investigate and analyze potential security issues",
"match": "detective Detective",
"arg": "/detective/home",
"autocomplete": "Detective",
"icon": {
"path": "./icons/detective.png"
}
},
{
"uid": "devicedefender",
"title": "IoT Device Defender",
"subtitle": "Secure your fleet of connected IoT devices",
"match": "devicedefender IoT Device Defender",
"arg": "/devicedefender/home",
"autocomplete": "IoT Device Defender",
"icon": {
"path": "./icons/devicedefender.png"
}
},
{
"uid": "df",
"title": "Device Farm",
"subtitle": "Test Android, iOS, and Web Apps on Real Devices in the Cloud",
"match": "df Device Farm",
"arg": "/devicefarm/home",
"autocomplete": "Device Farm",
"icon": {
"path": "./icons/df.png"
}
},
{
"uid": "dc_unlisted",
"title": "Direct Connect",
"subtitle": "Dedicated Network Connection to AWS",
"match": "dc_unlisted Direct Connect",
"arg": "/directconnect/home",
"autocomplete": "Direct Connect",
"icon": {
"path": "./icons/dc_unlisted.png"
}
},
{
"uid": "dc",
"title": "Direct Connect",
"subtitle": "Dedicated Network Connection to AWS",
"match": "dc Direct Connect",
"arg": "/directconnect/v2/home",
"autocomplete": "Direct Connect",
"icon": {
"path": "./icons/dc.png"
}
},
{
"uid": "ds",
"title": "Directory Service",
"subtitle": "Host and Manage Active Directory",
"match": "ds Directory Service",
"arg": "/directoryservicev2/home",
"autocomplete": "Directory Service",
"icon": {
"path": "./icons/ds.png"
}
},
{
"uid": "discovery",
"title": "Application Discovery Service",
"subtitle": "Discover on-premises application inventory and dependencies",
"match": "discovery Application Discovery Service",
"arg": "/discovery/home",
"autocomplete": "Application Discovery Service",
"icon": {
"path": "./icons/discovery.png"
}
},
{
"uid": "dms",
"title": "Database Migration Service",
"subtitle": "Managed Database Migration Service",
"match": "dms Database Migration Service",
"arg": "/dms/v2/home",
"autocomplete": "Database Migration Service",
"icon": {
"path": "./icons/dms.png"
}
},
{
"uid": "docdb",
"title": "Amazon DocumentDB",
"subtitle": "Fully-managed MongoDB-compatible database service",
"match": "docdb Amazon DocumentDB",
"arg": "/docdb/home",
"autocomplete": "Amazon DocumentDB",
"icon": {
"path": "./icons/docdb.png"
}
},
{
"uid": "ddb",
"title": "DynamoDB",
"subtitle": "Managed NoSQL Database",
"match": "ddb DynamoDB",
"arg": "/dynamodb/home",
"autocomplete": "DynamoDB",
"icon": {
"path": "./icons/ddb.png"
}
},
{
"uid": "ec2",
"title": "EC2",
"subtitle": "Virtual Servers in the Cloud",
"match": "ec2 EC2",
"arg": "/ec2/v2/home",
"autocomplete": "EC2",
"icon": {
"path": "./icons/ec2.png"
}
},
{
"uid": "spt",
"title": "EC2 Spot",
"match": "spt EC2 Spot",
"arg": "/ec2spot/home",
"autocomplete": "EC2 Spot",
"icon": {
"path": "./icons/spt.png"
}
},
{
"uid": "ecs",
"title": "Elastic Container Service",
"subtitle": "Highly secure, reliable, and scalable way to run containers",
"match": "ecs Elastic Container Service",
"arg": "/ecs/home",
"autocomplete": "Elastic Container Service",
"icon": {
"path": "./icons/ecs.png"
}
},
{
"uid": "efs",
"title": "EFS",
"subtitle": "Managed File Storage for EC2",
"match": "efs EFS",
"arg": "/efs/home",
"autocomplete": "EFS",
"icon": {
"path": "./icons/efs.png"
}
},
{
"uid": "eks",
"title": "Elastic Kubernetes Service",
"subtitle": "The most trusted way to run Kubernetes",
"match": "eks Elastic Kubernetes Service",
"arg": "/eks/home",
"autocomplete": "Elastic Kubernetes Service",
"icon": {
"path": "./icons/eks.png"
}
},
{
"uid": "elc",
"title": "ElastiCache",
"subtitle": "In-Memory Cache",
"match": "elc ElastiCache",
"arg": "/elasticache/home",
"autocomplete": "ElastiCache",
"icon": {
"path": "./icons/elc.png"
}
},
{
"uid": "eb",
"title": "Elastic Beanstalk",
"subtitle": "Run and Manage Web Apps",
"match": "eb Elastic Beanstalk",
"arg": "/elasticbeanstalk/home",
"autocomplete": "Elastic Beanstalk",
"icon": {
"path": "./icons/eb.png"
}
},
{
"uid": "emr",
"title": "EMR",
"subtitle": "Managed Hadoop Framework",
"match": "emr EMR",
"arg": "/elasticmapreduce/home",
"autocomplete": "EMR",
"icon": {
"path": "./icons/emr.png"
}
},
{
"uid": "ets",
"title": "Elastic Transcoder",
"subtitle": "Easy-to-Use Scalable Media Transcoding",
"match": "ets Elastic Transcoder",
"arg": "/elastictranscoder/home",
"autocomplete": "Elastic Transcoder",
"icon": {
"path": "./icons/ets.png"
}
},
{
"uid": "events",
"title": "Amazon EventBridge",
"subtitle": "Serverless event bus that connects application data from your own apps, SaaS, and AWS services",
"match": "events Amazon EventBridge",
"arg": "/events/home",
"autocomplete": "Amazon EventBridge",
"icon": {
"path": "./icons/events.png"
}
},
{
"uid": "fh",
"title": "Kinesis Firehose",
"match": "fh Kinesis Firehose",
"arg": "/firehose/home",
"autocomplete": "Kinesis Firehose",
"icon": {
"path": "./icons/fh.png"
}
},
{
"uid": "firewall-manager",
"title": "AWS Firewall Manager",
"subtitle": "Central management of firewall rules",
"match": "firewall-manager AWS Firewall Manager",
"arg": "/wafv2/home",
"autocomplete": "AWS Firewall Manager",
"icon": {
"path": "./icons/firewall-manager.png"
}
},
{
"uid": "forecast",
"title": "Amazon Forecast",
"subtitle": "Amazon Forecast is a fully-managed service for accurate time-series forecasting",
"match": "forecast Amazon Forecast",
"arg": "/forecast/home",
"autocomplete": "Amazon Forecast",
"icon": {
"path": "./icons/forecast.png"
}
},
{
"uid": "frauddetector",
"title": "Amazon Fraud Detector",
"subtitle": "Detect more online fraud faster using machine learning",
"match": "frauddetector Amazon Fraud Detector",
"arg": "/frauddetector/home",
"autocomplete": "Amazon Fraud Detector",
"icon": {
"path": "./icons/frauddetector.png"
}
},
{
"uid": "freertos",
"title": "FreeRTOS",
"subtitle": "FreeRTOS is an IoT Operating System for Microcontrollers",
"match": "freertos FreeRTOS",
"arg": "/freertos/home",
"autocomplete": "FreeRTOS",
"icon": {
"path": "./icons/freertos.png"
}
},
{
"uid": "fsx",
"title": "FSx",
"subtitle": "Fully managed third-party file systems optimized for a variety of workloads",
"match": "fsx FSx",
"arg": "/fsx/home",
"autocomplete": "FSx",
"icon": {
"path": "./icons/fsx.png"
}
},
{
"uid": "gal",
"title": "Amazon GameLift",
"subtitle": "Deploy and Scale Session-based Multiplayer Games",
"match": "gal Amazon GameLift",
"arg": "/gamelift/home",
"autocomplete": "Amazon GameLift",
"icon": {
"path": "./icons/gal.png"
}
},
{
"uid": "gl",
"title": "S3 Glacier",
"subtitle": "Archive Storage in the Cloud",
"match": "gl S3 Glacier",
"arg": "/glacier/home",
"autocomplete": "S3 Glacier",
"icon": {
"path": "./icons/gl.png"
}
},
{
"uid": "globalaccelerator",
"title": "Global Accelerator",
"subtitle": "Improve your application’s availability and performance using the AWS Global Network",
"match": "globalaccelerator Global Accelerator",
"arg": "https://us-west-2.console.aws.amazon.com/ec2/v2/home?region=us-west-2#GlobalAccelerator",
"autocomplete": "Global Accelerator",
"icon": {
"path": "./icons/globalaccelerator.png"
}
},
{
"uid": "glue",
"title": "AWS Glue",
"subtitle": "AWS Glue is a fully managed ETL (extract, transform, and load) service",
"match": "glue AWS Glue",
"arg": "/glue/home",
"autocomplete": "AWS Glue",
"icon": {
"path": "./icons/glue.png"
}
},
{
"uid": "greengrass",
"title": "IoT Greengrass",
"subtitle": "Deploy and run code on your devices",
"match": "greengrass IoT Greengrass",
"arg": "/greengrass/home",
"autocomplete": "IoT Greengrass",
"icon": {
"path": "./icons/greengrass.png"
}
},
{
"uid": "groundstation",
"title": "Ground Station",
"subtitle": "Communicate with satellites",
"match": "groundstation Ground Station",
"arg": "/groundstation/home",
"autocomplete": "Ground Station",
"icon": {
"path": "./icons/groundstation.png"
}
},
{
"uid": "guardduty",
"title": "GuardDuty",
"subtitle": "Intelligent Threat Detection to Protect Your AWS Accounts and Workloads",
"match": "guardduty GuardDuty",
"arg": "/guardduty/home",
"autocomplete": "GuardDuty",
"icon": {
"path": "./icons/guardduty.png"
}
},
{
"uid": "honeycode",
"title": "Amazon Honeycode",
"subtitle": "Build mobile and web apps without programming",
"match": "honeycode Amazon Honeycode",
"arg": "/honeycode/home",
"autocomplete": "Amazon Honeycode",
"icon": {
"path": "./icons/honeycode.png"
}
},
{
"uid": "iam",
"title": "IAM",
"subtitle": "Manage access to AWS resources",
"match": "iam IAM",
"arg": "/iam/home",
"autocomplete": "IAM",
"icon": {
"path": "./icons/iam.png"
}
},
{
"uid": "imagebuilder",
"title": "EC2 Image Builder",
"subtitle": "A managed service to automate build, customize and deploy OS images",
"match": "imagebuilder EC2 Image Builder",
"arg": "/imagebuilder/home",
"autocomplete": "EC2 Image Builder",
"icon": {
"path": "./icons/imagebuilder.png"
}
},
{
"uid": "imex",
"title": "AWS Snow Family",
"subtitle": "Large Scale Data Transport",
"match": "imex AWS Snow Family",
"arg": "/importexport/home",
"autocomplete": "AWS Snow Family",
"icon": {
"path": "./icons/imex.png"
}
},
{
"uid": "ins",
"title": "Inspector",
"subtitle": "Analyze Application Security",
"match": "ins Inspector",
"arg": "/inspector/home",
"autocomplete": "Inspector",
"icon": {
"path": "./icons/ins.png"
}
},
{
"uid": "iot",
"title": "IoT Core",
"subtitle": "Connect Devices to the Cloud",
"match": "iot IoT Core",
"arg": "/iot/home",
"autocomplete": "IoT Core",
"icon": {
"path": "./icons/iot.png"
}
},
{
"uid": "iot1click",
"title": "IoT 1-Click",
"subtitle": "Trigger AWS Lambda functions from simple devices",