-
Notifications
You must be signed in to change notification settings - Fork 3
/
aws_products.json
2318 lines (2318 loc) · 82 KB
/
aws_products.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
[
{
"Identifier": "AWSAmplify",
"Name": "AWS Amplify",
"Family": "Front-End Web & Mobile",
"Description": "Build scalable mobile and web apps fast, with endless flexibility"
},
{
"Identifier": "AWSApp2Container",
"Name": "AWS App2Container",
"Family": "Compute",
"Description": "Containerize and migrate existing applications"
},
{
"Identifier": "AWSAppFabric",
"Name": "AWS AppFabric",
"Family": "Business Applications",
"Description": "AWS AppFabric connects multiple SaaS applications with no coding required for better productivity and security"
},
{
"Identifier": "AWSAppRunner",
"Name": "AWS App Runner",
"Family": "Compute",
"Description": "Build and run production web applications at scale"
},
{
"Identifier": "AWSAppSync",
"Name": "AWS AppSync",
"Family": "Front-End Web & Mobile",
"Description": "Real-Time Data Sync Using GraphQL for Mobile & Web Apps, Online or Offline"
},
{
"Identifier": "AWSApplicationCostProfiler",
"Name": "AWS Application Cost Profiler",
"Family": "Management & Governance",
"Description": "Cost per tenant and workload"
},
{
"Identifier": "AWSApplicationMigrationServiceMGN",
"Name": "AWS Application Migration Service (MGN)",
"Family": "Migration & Transfer",
"Description": "AWS Application Migration Service (MGN) automates lift-and-shift migration"
},
{
"Identifier": "AWSAuditManager",
"Name": "AWS Audit Manager",
"Family": "Security, Identity & Compliance",
"Description": "Continuously assess controls for risk and compliance"
},
{
"Identifier": "AWSB2BDataInterchange",
"Name": "AWS B2B Data Interchange",
"Family": "Application Integration",
"Description": "Service for automating the transformation of Electronic Data Interchange (EDI) documents into common data representations"
},
{
"Identifier": "AWSBackup",
"Name": "AWS Backup",
"Family": "Storage",
"Description": "Centrally manage and automate backups across AWS services"
},
{
"Identifier": "AWSBatch",
"Name": "AWS Batch",
"Family": "High Performance Computing (HPC)",
"Description": "Fully managed batch processing at any scale"
},
{
"Identifier": "AWSBugBust",
"Name": "AWS BugBust",
"Family": "Machine Learning",
"Description": "Bug bashing events"
},
{
"Identifier": "AWSBusinessSupportPublicPricing",
"Name": "AWS Business Support - Public Pricing",
"Family": "Support",
"Description": "Recommended if you have production workloads in AWS"
},
{
"Identifier": "AWSCertificateManager",
"Name": "AWS Certificate Manager",
"Family": "Security, Identity & Compliance",
"Description": "Easily provision, manage, and deploy public and private SSL/TLS certificates for use with AWS services and your internal connected resources"
},
{
"Identifier": "AWSChatbot",
"Name": "AWS Chatbot",
"Family": "Management & Governance",
"Description": "ChatOps for AWS"
},
{
"Identifier": "AWSCleanRooms",
"Name": "AWS Clean Rooms",
"Family": "Analytics",
"Description": "Create clean rooms in minutes. Collaborate without sharing raw data."
},
{
"Identifier": "AWSCleanRoomsDifferentialPrivacy",
"Name": "AWS Clean Rooms Differential Privacy",
"Family": "Analytics",
"Description": "Protect the privacy of your users with mathematically-backed controls in a few clicks"
},
{
"Identifier": "AWSCleanRoomsML",
"Name": "AWS Clean Rooms ML",
"Family": "Analytics",
"Description": "Apply machine learning with your partners without sharing underlying data"
},
{
"Identifier": "AWSClientVPN",
"Name": "AWS Client VPN",
"Family": "Networking & Content Delivery",
"Description": "Extend your on-premises networks to the cloud and securely access them from anywhere"
},
{
"Identifier": "AWSCloudControlAPI",
"Name": "AWS Cloud Control API",
"Family": "Developer Tools",
"Description": "Manage AWS and third-party cloud infrastructure with consistent APIs"
},
{
"Identifier": "AWSCloudDevelopmentKitCDK",
"Name": "AWS Cloud Development Kit (CDK)",
"Family": "Developer Tools",
"Description": "Define cloud infrastructure using familiar programming languages"
},
{
"Identifier": "AWSCloudFormation",
"Name": "AWS CloudFormation",
"Family": "Management & Governance",
"Description": "Create and Manage Resources with Templates"
},
{
"Identifier": "AWSCloudHSM",
"Name": "AWS CloudHSM",
"Family": "Security, Identity & Compliance",
"Description": "Managed hardware security module (HSM) on the AWS Cloud"
},
{
"Identifier": "AWSCloudMap",
"Name": "AWS Cloud Map",
"Family": "Networking & Content Delivery",
"Description": "Build a dynamic map of your cloud"
},
{
"Identifier": "AWSCloudShell",
"Name": "AWS CloudShell",
"Family": "Developer Tools",
"Description": "Command line access to AWS resources and tools directly from a browser"
},
{
"Identifier": "AWSCloudTrail",
"Name": "AWS CloudTrail",
"Family": "Management & Governance",
"Description": "Track User Activity and API Usage"
},
{
"Identifier": "AWSCodeArtifact",
"Name": "AWS CodeArtifact",
"Family": "Developer Tools",
"Description": "Secure, scalable, and cost-effective artifact management for software development"
},
{
"Identifier": "AWSCodeBuild",
"Name": "AWS CodeBuild",
"Family": "Developer Tools",
"Description": "Build and test code with continuous scaling. Pay only for the build time you use."
},
{
"Identifier": "AWSCodeCommit",
"Name": "AWS CodeCommit",
"Family": "Developer Tools",
"Description": "Securely host highly scalable private Git repositories. Collaborate on code."
},
{
"Identifier": "AWSCodeDeploy",
"Name": "AWS CodeDeploy",
"Family": "Developer Tools",
"Description": "Automate code deployments to maintain application uptime"
},
{
"Identifier": "AWSCodePipeline",
"Name": "AWS CodePipeline",
"Family": "Developer Tools",
"Description": "Automate continuous delivery pipelines for fast and reliable updates"
},
{
"Identifier": "AWSConfig",
"Name": "AWS Config",
"Family": "Management & Governance",
"Description": "Track Resource Inventory and Changes"
},
{
"Identifier": "AWSConsoleMobileApplication",
"Name": "AWS Console Mobile Application",
"Family": "Management & Governance",
"Description": "Stay connected to your AWS resources on-the-go"
},
{
"Identifier": "AWSControlTower",
"Name": "AWS Control Tower",
"Family": "Management & Governance",
"Description": "The easiest way to set up and govern a secure, compliant multi-account environment"
},
{
"Identifier": "AWSCountdownPremium",
"Name": "AWS Countdown Premium",
"Family": "Support",
"Description": "Optimize your business-critical events, product launches, migrations, and modernizations on AWS"
},
{
"Identifier": "AWSDataExchange",
"Name": "AWS Data Exchange",
"Family": "Analytics",
"Description": "Easily exchange data in the cloud"
},
{
"Identifier": "AWSDataSync",
"Name": "AWS DataSync",
"Family": "Migration & Transfer",
"Description": "Simplifies, automates, and accelerates moving data"
},
{
"Identifier": "AWSDatabaseMigrationService",
"Name": "AWS Database Migration Service",
"Family": "Database",
"Description": "Migrate your databases to AWS with minimal downtime"
},
{
"Identifier": "AWSDeadlineCloud",
"Name": "AWS Deadline Cloud",
"Family": "Media Services",
"Description": "Fully managed service that simplifies render management for teams creating computer-generated 2D/3D graphics and visual effects"
},
{
"Identifier": "AWSDeepComposer",
"Name": "AWS DeepComposer",
"Family": "Machine Learning",
"Description": "AWS DeepComposer allows developers of all skill levels to get started with Generative AI."
},
{
"Identifier": "AWSDeepLearningAMIs",
"Name": "AWS Deep Learning AMIs",
"Family": "Machine Learning",
"Description": "Pre-configured environments to quickly build deep learning applications"
},
{
"Identifier": "AWSDeepLearningContainers",
"Name": "AWS Deep Learning Containers",
"Family": "Machine Learning",
"Description": "Quickly set up deep learning environments with optimized, pre-packaged container images"
},
{
"Identifier": "AWSDeepLens",
"Name": "AWS DeepLens",
"Family": "Machine Learning",
"Description": "Deep Learning Enabled Video Camera"
},
{
"Identifier": "AWSDeepRacer",
"Name": "AWS DeepRacer",
"Family": "Machine Learning",
"Description": "Fully autonomous 1/18th scale race car, driven by machine learning"
},
{
"Identifier": "AWSDeveloperSupportPublicPricing",
"Name": "AWS Developer Support - Public Pricing",
"Family": "Support",
"Description": "Recommended if you are experimenting or testing in AWS"
},
{
"Identifier": "AWSDeviceFarm",
"Name": "AWS Device Farm",
"Family": "Front-End Web & Mobile",
"Description": "Test Android, iOS, and Web Apps on Real Devices in the Cloud"
},
{
"Identifier": "AWSDiode",
"Name": "AWS Diode",
"Family": "Networking & Content Delivery",
"Description": "Cloud-based CDS service that provides scalable and reliable delivery of data from one cloud security domain to another"
},
{
"Identifier": "AWSDirectConnect",
"Name": "AWS Direct Connect",
"Family": "Networking & Content Delivery",
"Description": "Dedicated Network Connection to AWS"
},
{
"Identifier": "AWSDirectoryService",
"Name": "AWS Directory Service",
"Family": "Security, Identity & Compliance",
"Description": "Managed Microsoft Active Directory in AWS"
},
{
"Identifier": "AWSDistroforOpenTelemetryADOT",
"Name": "AWS Distro for OpenTelemetry (ADOT)",
"Family": "Management & Governance",
"Description": "Secure, production-ready open source distribution with predictable performance"
},
{
"Identifier": "AWSElasticBeanstalk",
"Name": "AWS Elastic Beanstalk",
"Family": "Developer Tools",
"Description": "Easy to begin, Impossible to outgrow"
},
{
"Identifier": "AWSElasticDisasterRecovery",
"Name": "AWS Elastic Disaster Recovery",
"Family": "Storage",
"Description": "Scalable, cost-effective application recovery to AWS"
},
{
"Identifier": "AWSElementalMediaConnect",
"Name": "AWS Elemental MediaConnect",
"Family": "Media Services",
"Description": "Reliable, secure, and flexible transport for live video"
},
{
"Identifier": "AWSElementalMediaConvert",
"Name": "AWS Elemental MediaConvert",
"Family": "Media Services",
"Description": "Convert file-based content for broadcast and multiscreen delivery"
},
{
"Identifier": "AWSElementalMediaLive",
"Name": "AWS Elemental MediaLive",
"Family": "Media Services",
"Description": "Convert video inputs into live outputs for broadcast and streaming delivery"
},
{
"Identifier": "AWSElementalMediaPackage",
"Name": "AWS Elemental MediaPackage",
"Family": "Media Services",
"Description": "Deliver video to many devices using just-in-time format conversion"
},
{
"Identifier": "AWSElementalMediaTailor",
"Name": "AWS Elemental MediaTailor",
"Family": "Media Services",
"Description": "Personalize and monetize multiscreen content with server-side ad insertion"
},
{
"Identifier": "AWSEndUserMessaging",
"Name": "AWS End User Messaging",
"Family": "Business Applications",
"Description": "Dependable, cost-effective messaging without compromising safety, security, or results"
},
{
"Identifier": "AWSEndofSupportMigrationProgramEMP",
"Name": "AWS End-of-Support Migration Program (EMP)",
"Family": "Migration & Transfer",
"Description": "Future-proof your legacy Windows Server applications on AWS"
},
{
"Identifier": "AWSEnterpriseSupportPublicPricing",
"Name": "AWS Enterprise Support - Public Pricing",
"Family": "Support",
"Description": "Recommended if you have business and/or mission critical workloads in AWS"
},
{
"Identifier": "AWSEnterpriseonRamp",
"Name": "AWS Enterprise on Ramp",
"Family": "Support",
"Description": "Recommended if you have business and/or mission critical workloads in AWS"
},
{
"Identifier": "AWSEntityResolution",
"Name": "AWS Entity Resolution",
"Family": "Analytics",
"Description": "Configurable, easy-to-use entity resolution workflows"
},
{
"Identifier": "AWSFaultInjectionServiceFIS",
"Name": "AWS Fault Injection Service (FIS)",
"Family": "Developer Tools",
"Description": "Improve resiliency and performance with controlled experiments"
},
{
"Identifier": "AWSFirewallManager",
"Name": "AWS Firewall Manager",
"Family": "Security, Identity & Compliance",
"Description": "Centrally configure and manage firewall rules across accounts and applications"
},
{
"Identifier": "AWSGameKit",
"Name": "AWS GameKit",
"Family": "Game Tech",
"Description": "GameKit enables game developers to deploy and customize game features from game engine"
},
{
"Identifier": "AWSGlobalAccelerator",
"Name": "AWS Global Accelerator",
"Family": "Networking & Content Delivery",
"Description": "Improve global application availability and performance using the AWS global network"
},
{
"Identifier": "AWSGlue",
"Name": "AWS Glue",
"Family": "Analytics",
"Description": "AWS Glue is a fully managed ETL (extract, transform, and load) service"
},
{
"Identifier": "AWSGlueDataBrew",
"Name": "AWS Glue DataBrew",
"Family": "Analytics",
"Description": "Visual data preparation tool to clean and normalize data for analytics and machine learning"
},
{
"Identifier": "AWSGroundStation",
"Name": "AWS Ground Station",
"Family": "Satellite",
"Description": "Run, scale, and automate robotics simulation"
},
{
"Identifier": "AWSHealthImaging",
"Name": "AWS HealthImaging",
"Family": "Machine Learning",
"Description": "Store, access, and analyze medical images in the cloud at petabyte scale"
},
{
"Identifier": "AWSHealthScribe",
"Name": "AWS HealthScribe",
"Family": "Machine Learning",
"Description": "Automatically generate clinical notes from patient-clinician conversations"
},
{
"Identifier": "AWSIAMAccessAnalyzer",
"Name": "AWS IAM Access Analyzer",
"Family": "Security, Identity & Compliance",
"Description": "IAM Access Analyzer guides you towards least-privilege permissions"
},
{
"Identifier": "AWSIncidentDetectionandResponse",
"Name": "AWS Incident Detection and Response",
"Family": "Support",
"Description": "Add-on to AWS Enterprise Support that offers customers 24 x 7 proactive incident detection and rapid engagement with the right AWS resources to accelerate their recovery from critical incidents"
},
{
"Identifier": "AWSInfrastructureEventManagement",
"Name": "AWS Infrastructure Event Management",
"Family": "Support",
"Description": "Support for planning and running business critical events"
},
{
"Identifier": "AWSIoTAnalytics",
"Name": "AWS IoT Analytics",
"Family": "Internet of Things",
"Description": "Analytics for IoT devices"
},
{
"Identifier": "AWSIoTCore",
"Name": "AWS IoT Core",
"Family": "Internet of Things",
"Description": "Easily and securely connect devices to the cloud"
},
{
"Identifier": "AWSIoTCoreforLoRaWAN",
"Name": "AWS IoT Core for LoRaWAN",
"Family": "Internet of Things",
"Description": "Connect, manage, and secure LoRaWAN devices at scale"
},
{
"Identifier": "AWSIoTDeviceDefender",
"Name": "AWS IoT Device Defender",
"Family": "Internet of Things",
"Description": "Security management for IoT devices"
},
{
"Identifier": "AWSIoTDeviceManagement",
"Name": "AWS IoT Device Management",
"Family": "Internet of Things",
"Description": "Register, organize, monitor, and remotely manage connected devices at scale"
},
{
"Identifier": "AWSIoTEvents",
"Name": "AWS IoT Events",
"Family": "Internet of Things",
"Description": "Easily detect and respond to events from IoT sensors and applications"
},
{
"Identifier": "AWSIoTFleetWise",
"Name": "AWS IoT FleetWise",
"Family": "Internet of Things",
"Description": "Easily collect, transform, and transfer vehicle data to the cloud in near-real time"
},
{
"Identifier": "AWSIoTGreengrass",
"Name": "AWS IoT Greengrass",
"Family": "Internet of Things",
"Description": "Deploy and run code on your devices"
},
{
"Identifier": "AWSIoTSiteWise",
"Name": "AWS IoT SiteWise",
"Family": "Internet of Things",
"Description": "Collect, organize, and analyze data from industrial equipment at scale"
},
{
"Identifier": "AWSIoTTwinMaker",
"Name": "AWS IoT TwinMaker",
"Family": "Internet of Things",
"Description": "Optimize operations by easily creating digital twins of real-world systems"
},
{
"Identifier": "AWSKeyManagementServiceKMS",
"Name": "AWS Key Management Service (KMS)",
"Family": "Security, Identity & Compliance",
"Description": "Easily create and control the keys used to encrypt or digitally sign your data"
},
{
"Identifier": "AWSLakeFormation",
"Name": "AWS Lake Formation",
"Family": "Analytics",
"Description": "AWS Lake Formation makes it easy to set up a secure data lake"
},
{
"Identifier": "AWSLambda",
"Name": "AWS Lambda",
"Family": "Compute",
"Description": "Run code without thinking about servers or clusters"
},
{
"Identifier": "AWSLicenseManager",
"Name": "AWS License Manager",
"Family": "Management & Governance",
"Description": "Set rules to manage, discover, and report third-party license usage proactively"
},
{
"Identifier": "AWSLocalZones",
"Name": "AWS Local Zones",
"Family": "Compute",
"Description": "Run latency sensitive applications closer to end users"
},
{
"Identifier": "AWSMainframeModernizationBluAge",
"Name": "AWS Mainframe Modernization Blu Age",
"Family": "Compute",
"Description": "Refactor toolchain within AWS Mainframe Modernization service"
},
{
"Identifier": "AWSMainframeModernizationFileTransferBMC",
"Name": "AWS Mainframe Modernization File Transfer BMC",
"Family": "Compute",
"Description": "File transfer toolchain within AWS Mainframe Modernization service powered by BMC"
},
{
"Identifier": "AWSMainframeModernizationMicroFocus",
"Name": "AWS Mainframe Modernization Micro Focus",
"Family": "Compute",
"Description": "Replatform toolchain within AWS Mainframe Modernization service"
},
{
"Identifier": "AWSMainframeModernizationPreciselyforIBMi",
"Name": "AWS Mainframe Modernization Precisely for IBM i",
"Family": "Compute",
"Description": "Data replication toolchain for IBMi within AWS Mainframe Modernization service"
},
{
"Identifier": "AWSMainframeModernizationPreciselyforIBMzOS",
"Name": "AWS Mainframe Modernization Precisely for IBM z/OS",
"Family": "Compute",
"Description": "Data replication toolchain for IBMz within AWS Mainframe Modernization service"
},
{
"Identifier": "AWSMainframeModernizationReplatformNTTDATAUniKix",
"Name": "AWS Mainframe Modernization Replatform NTT DATA UniKix",
"Family": "Compute",
"Description": "Replatform toolchain capability with AWS Mainframe Modernization service powered by NTT Data UniKix"
},
{
"Identifier": "AWSMainframeModernizationSPARCStromasys",
"Name": "AWS Mainframe Modernization SPARC Stromasys",
"Family": "Compute",
"Description": "Virtualization for SPARC toolchain within AWS Mainframe Modernization service powered by Stromasys"
},
{
"Identifier": "AWSManagedServicesAccelerate",
"Name": "AWS Managed Services Accelerate",
"Family": "Management & Governance",
"Description": "Extends customers teams and capabilities to drive operational excellence with a flexible consumption model"
},
{
"Identifier": "AWSManagedServicesAdvanced",
"Name": "AWS Managed Services Advanced",
"Family": "Management & Governance",
"Description": "Fully managed operational solution that trades some flexibility for increased operational rigor"
},
{
"Identifier": "AWSManagedServicesOperationsonDemandOOD",
"Name": "AWS Managed Services Operations on Demand (OOD)",
"Family": "Management & Governance",
"Description": "Curated catalog of operational capabilities that augment the extensive scope provided by AMS Operations Plans"
},
{
"Identifier": "AWSMarketplaceAMI",
"Name": "AWS Marketplace - AMI",
"Family": "Marketplace",
"Description": "Amazon Machine Image (AMI) Marketplace Products"
},
{
"Identifier": "AWSMarketplaceEC2",
"Name": "AWS Marketplace - EC2",
"Family": "Marketplace",
"Description": "EC2 Marketplace Products"
},
{
"Identifier": "AWSMarketplaceProfessionalServices",
"Name": "AWS Marketplace - Professional Services",
"Family": "Marketplace",
"Description": "Professional Services Marketplace Products"
},
{
"Identifier": "AWSMarketplaceSaas",
"Name": "AWS Marketplace - Saas",
"Family": "Marketplace",
"Description": "Software as a service (Saas) Marketplace Products"
},
{
"Identifier": "AWSMigrationHub",
"Name": "AWS Migration Hub",
"Family": "Migration & Transfer",
"Description": "Simplify and accelerate the migration of your data centers to AWS"
},
{
"Identifier": "AWSMigrationHubRefactorSpaces",
"Name": "AWS Migration Hub Refactor Spaces",
"Family": "Migration & Transfer",
"Description": "Starting point for incremental application refactoring to microservices"
},
{
"Identifier": "AWSMigrationHubStrategyRecommendations",
"Name": "AWS Migration Hub Strategy Recommendations",
"Family": "Migration & Transfer",
"Description": "Analyzes your applications to help you determine the optimal strategy and tools to migrate and modernize at scale."
},
{
"Identifier": "AWSMissionNetworkingDedicatedCircuit",
"Name": "AWS Mission Networking Dedicated Circuit",
"Family": "Networking & Content Delivery",
"Description": "Dedicated Encrypted Network Connection to Amazon Dedicated Cloud(ADC)"
},
{
"Identifier": "AWSMissionNetworkingIPTunnel",
"Name": "AWS Mission Networking IP Tunnel",
"Family": "Networking & Content Delivery",
"Description": "Encrypted Network Connection to Amazon Dedicated Cloud(ADC) over the Internet"
},
{
"Identifier": "AWSModularDataCenter",
"Name": "AWS Modular Data Center",
"Family": "Compute",
"Description": "Provides self-contained modular data centers, extending the use of AWS services to the tactical edge."
},
{
"Identifier": "AWSNetworkFirewall",
"Name": "AWS Network Firewall",
"Family": "Security, Identity & Compliance",
"Description": "Deploy network security across your Amazon VPCs with just a few clicks"
},
{
"Identifier": "AWSNeuron",
"Name": "AWS Neuron",
"Family": "Machine Learning",
"Description": "SDK to optimize machine learning inference on AWS Inferentia chips"
},
{
"Identifier": "AWSOpsHub",
"Name": "AWS OpsHub",
"Family": "Storage",
"Description": "Graphical user interface to manage your AWS Snowball devices"
},
{
"Identifier": "AWSOpsWorks",
"Name": "AWS OpsWorks",
"Family": "Management & Governance",
"Description": "Automate Operations with Chef and Puppet"
},
{
"Identifier": "AWSOutposts",
"Name": "AWS Outposts",
"Family": "Compute",
"Description": "Run AWS Services On Premises"
},
{
"Identifier": "AWSOutpostsServers",
"Name": "AWS Outposts Servers",
"Family": "Compute",
"Description": "Run AWS Outposts in locations with limited space or smaller capacity requirements"
},
{
"Identifier": "AWSPanorama",
"Name": "AWS Panorama",
"Family": "Machine Learning",
"Description": "Enabling computer vision applications at the edge"
},
{
"Identifier": "AWSParallelCluster",
"Name": "AWS ParallelCluster",
"Family": "High Performance Computing (HPC)",
"Description": "Quickly build HPC compute environments on AWS"
},
{
"Identifier": "AWSPartnerDeviceCatalog",
"Name": "AWS Partner Device Catalog",
"Family": "Internet of Things",
"Description": "Device Qualification Catalog"
},
{
"Identifier": "AWSPaymentCryptography",
"Name": "AWS Payment Cryptography",
"Family": "Security, Identity & Compliance",
"Description": "Simplify cryptography operations in your cloud-hosted payment application"
},
{
"Identifier": "AWSPrivate5G",
"Name": "AWS Private 5G",
"Family": "Networking & Content Delivery",
"Description": "Managed service for deploying private cellular networks at on-premises"
},
{
"Identifier": "AWSPrivateCA",
"Name": "AWS Private CA",
"Family": "Security, Identity & Compliance",
"Description": "Create private certificates to identify resources and protect data"
},
{
"Identifier": "AWSPrivateLink",
"Name": "AWS PrivateLink",
"Family": "Networking & Content Delivery",
"Description": "Establish private connectivity between VPCs and services hosted on AWS or on-premises, without exposing data to the internet"
},
{
"Identifier": "AWSProton",
"Name": "AWS Proton",
"Family": "Management & Governance",
"Description": "Manage your infrastructure so developers can focus on coding."
},
{
"Identifier": "AWSResilienceHub",
"Name": "AWS Resilience Hub",
"Family": "Management & Governance",
"Description": "Prepare and protect your applications from disruptions"
},
{
"Identifier": "AWSSDKsandTools",
"Name": "AWS SDKs and Tools",
"Family": "Developer Tools",
"Description": "Access and manage AWS services with your preferred development language or platform"
},
{
"Identifier": "AWSSecretsManager",
"Name": "AWS Secrets Manager",
"Family": "Security, Identity & Compliance",
"Description": "Easily rotate, manage, and retrieve database credentials, API keys, and other secrets through their lifecycle"
},
{
"Identifier": "AWSSecurityHub",
"Name": "AWS Security Hub",
"Family": "Security, Identity & Compliance",
"Description": "Automate AWS security checks and centralize security alerts"
},
{
"Identifier": "AWSServerlessApplicationRepository",
"Name": "AWS Serverless Application Repository",
"Family": "Compute",
"Description": "Discover, deploy, and publish serverless applications"
},
{
"Identifier": "AWSServiceCatalog",
"Name": "AWS Service Catalog",
"Family": "Management & Governance",
"Description": "Create, organize, and govern your curated catalog of AWS products"
},
{
"Identifier": "AWSShield",
"Name": "AWS Shield",
"Family": "Security, Identity & Compliance",
"Description": "Managed DDoS protection"
},
{
"Identifier": "AWSSimSpaceWeaver",
"Name": "AWS SimSpace Weaver",
"Family": "Compute",
"Description": "Expand your spatial simulation workloads across multiple servers"
},
{
"Identifier": "AWSSingleSignOn",
"Name": "AWS Single Sign-On",
"Family": "Security, Identity & Compliance",
"Description": "Manage Single Sign-On (SSO) Access to AWS Accounts and Business Applications"
},
{
"Identifier": "AWSSiteLink",
"Name": "AWS SiteLink",
"Family": "Networking & Content Delivery",
"Description": "AWS Direct Connect SiteLink creates private, end-to-end network connections between the offices, data centers, and colocation facilities in your global network"
},
{
"Identifier": "AWSSitetoSiteVPN",
"Name": "AWS Site-to-Site VPN",
"Family": "Networking & Content Delivery",
"Description": "Extend your on-premises networks to the cloud"
},
{
"Identifier": "AWSStepFunctions",
"Name": "AWS Step Functions",
"Family": "Application Integration",
"Description": "Coordinate Distributed Applications"
},
{
"Identifier": "AWSStorageGatewayS3FileGateway",
"Name": "AWS Storage Gateway (S3 File Gateway)",
"Family": "Storage",
"Description": "Store and access objects in Amazon S3 from NFS or SMB file data with local caching"
},
{
"Identifier": "AWSStorageGatewayTapeGateway",
"Name": "AWS Storage Gateway (Tape Gateway)",
"Family": "Storage",
"Description": "Backup and archive on-premises data to virtual tapes in AWS"
},
{
"Identifier": "AWSStorageGatewayVolumeGateway",
"Name": "AWS Storage Gateway (Volume Gateway)",
"Family": "Storage",
"Description": "Hybrid cloud block storage with local caching"
},
{
"Identifier": "AWSSupplyChain",
"Name": "AWS Supply Chain",
"Family": "Business Applications",
"Description": "Mitigate risks and lower costs with an ML-powered supply chain application."
},
{
"Identifier": "AWSSupplyChainDemandPlanning",
"Name": "AWS Supply Chain Demand Planning",
"Family": "Business Applications",
"Description": "Use ML algorithms built with user, macroeconomic data and retailer history to generate forecasts for capacity planning"
},
{
"Identifier": "AWSSupplyChainInsights",
"Name": "AWS Supply Chain - Insights",
"Family": "Application Integration",
"Description": "Extract inventory, supply, and demand related data from existing systems into a single data model"
},
{
"Identifier": "AWSSupplyChainNtierVisibility",
"Name": "AWS Supply Chain - N-tier Visibility",
"Family": "Business Applications",
"Description": "Extends visibility and insights beyond your organization to your external trading partners"
},
{
"Identifier": "AWSSupplyChainSupplyPlanning",
"Name": "AWS Supply Chain - Supply Planning",
"Family": "Business Applications",
"Description": "Forecasts and plans purchases of raw materials, components, and finished goods"
},
{
"Identifier": "AWSSupplyChainSustainability",
"Name": "AWS Supply Chain - Sustainability",
"Family": "Business Applications",
"Description": "Provides a secure and efficient way for sustainability professionals to obtain the documents and datasets from supplier network"
},
{
"Identifier": "AWSSystemsManager",
"Name": "AWS Systems Manager",
"Family": "Management & Governance",
"Description": "Gain operational insights and take action on AWS resources"
},
{
"Identifier": "AWSSystemsManagerFleetManager",
"Name": "AWS Systems Manager Fleet Manager",
"Family": "Management & Governance",
"Description": "Remotely manage server fleets running on AWS, or on premises"
},
{
"Identifier": "AWSSystemsManagerIncidentManager",
"Name": "AWS Systems Manager Incident Manager",
"Family": "Management & Governance",
"Description": "Enables faster resolution of critical application availability and performance issues"
},
{
"Identifier": "AWSTransferFamilySFTPFTPSFTP",
"Name": "AWS Transfer Family (SFTP, FTPS, FTP)",
"Family": "Migration & Transfer",
"Description": "Easily manage and share data with simple, secure, and scalable file transfers"
},
{
"Identifier": "AWSTransitGateway",
"Name": "AWS Transit Gateway",
"Family": "Networking & Content Delivery",
"Description": "Easily connect Amazon VPCs, AWS accounts, and on-premises networks to a single gateway"
},
{
"Identifier": "AWSVerifiedAccess",
"Name": "AWS Verified Access",
"Family": "Networking & Content Delivery",
"Description": "Provide secure access to corporate applications without a VPN"
},
{
"Identifier": "AWSWAFWebApplicationFirewall",
"Name": "AWS WAF - Web Application Firewall",
"Family": "Security, Identity & Compliance",
"Description": "Protect your web applications from common web exploits"
},
{
"Identifier": "AWSWavelength",
"Name": "AWS Wavelength",
"Family": "Compute",
"Description": "Deliver ultra-low-latency applications for 5G devices"
},
{
"Identifier": "AWSWellArchitectedTool",
"Name": "AWS Well-Architected Tool",
"Family": "Management & Governance",
"Description": "Use AWS Well-Architected Tool to learn best practices, measure, and improve your workloads"
},
{
"Identifier": "AWSXRay",
"Name": "AWS X-Ray",
"Family": "Developer Tools",
"Description": "Analyze and debug production, distributed applications"
},
{
"Identifier": "AWSrePostPrivate",
"Name": "AWS re:Post Private",
"Family": "Support",
"Description": "Knowledge service to accelerate cloud adoption and increase developer productivity"
},
{
"Identifier": "AlexaforBusiness",
"Name": "Alexa for Business",
"Family": "Business Applications",
"Description": "Alexa for Business Provides Tools to Manage Alexa in Your Organization"
},
{
"Identifier": "AmazonAPIGateway",
"Name": "Amazon API Gateway",
"Family": "Networking & Content Delivery",
"Description": "Create, maintain, and secure APIs at any scale"
},
{
"Identifier": "AmazonAppFlow",
"Name": "Amazon AppFlow",
"Family": "Application Integration",
"Description": "Amazon AppFlow integrates apps and automates data flows without code."
},
{
"Identifier": "AmazonAppStream20",
"Name": "Amazon AppStream 2.0",
"Family": "End User Computing",
"Description": "Secure, reliable, and scalable access to applications and non-persistent desktops from any location"
},
{
"Identifier": "AmazonAthena",
"Name": "Amazon Athena",
"Family": "Analytics",
"Description": "Start querying data instantly. Get results in seconds. Pay only for the queries you run."
},
{
"Identifier": "AmazonAugmentedAIA2I",
"Name": "Amazon Augmented AI (A2I)",
"Family": "Machine Learning",
"Description": "Easily implement human review of machine learning predictions"
},
{
"Identifier": "AmazonBedrock",
"Name": "Amazon Bedrock",
"Family": "Machine Learning",
"Description": "The easiest way to build and scale generative AI applications with foundation models (FMs)"
},
{
"Identifier": "AmazonBraket",
"Name": "Amazon Braket",
"Family": "Quantum Technologies",
"Description": "Service for exploring, evaluating, and experimenting with quantum computing."
},
{
"Identifier": "AmazonChime",
"Name": "Amazon Chime",
"Family": "Business Applications",
"Description": "Amazon Chime is a communications service that transforms online meetings"
},
{
"Identifier": "AmazonChimeSDK",
"Name": "Amazon Chime SDK",
"Family": "Business Applications",
"Description": "Embed proven real-time communication capabilities in your applications"
},
{
"Identifier": "AmazonChimeVoiceConnector",
"Name": "Amazon Chime Voice Connector",
"Family": "Business Applications",
"Description": "Cost-effective SIP trunking and advanced telephony features powered by AWS"
},
{
"Identifier": "AmazonCloudDirectory",
"Name": "Amazon Cloud Directory",