-
-
Notifications
You must be signed in to change notification settings - Fork 269
/
index.html
executable file
·1782 lines (1722 loc) · 141 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Former2</title>
<link rel="apple-touch-icon" sizes="180x180" href="img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon-16x16.png">
<link rel="manifest" href="img/site.webmanifest">
<link rel="mask-icon" href="img/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<link href="favicon.ico" rel="shortcut icon">
<meta name="description" content="Convert your existing cloud resources into CloudFormation / Terraform / Troposphere" />
<meta property="og:title" content="Former2" />
<meta property="og:description" content="Convert your existing cloud resources into CloudFormation / Terraform / Troposphere" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://former2.com/" />
<meta property="og:image" content="https://former2.com/img/squarelogo.png" />
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link rel="stylesheet" href="css/separate/elements/steps.min.css">
<!--<link rel="stylesheet" href="css/lib/bootstrap-table/bootstrap-table.min.css">-->
<link rel="stylesheet" href="css/separate/vendor/tags_editor.min.css">
<link rel="stylesheet" href="css/lib/bootstrap-table/bootstrap-table.css">
<link rel="stylesheet" href="css/lib/font-awesome/font-awesome.min.css">
<link rel="stylesheet" href="css/lib/bootstrap/bootstrap.min.css">
<link rel="stylesheet" href="js/lib/tippy/themes/material.css">
<link rel="stylesheet" href="css/separate/vendor/blockui.min.css">
<link rel="stylesheet" href="css/separate/pages/widgets.min.css">
<link rel="stylesheet" href="css/separate/pages/others.min.css">
<link rel="stylesheet" href="css/separate/vendor/select2.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/custom.css">
<!-- CodeMirror -->
<link rel="stylesheet" href="lib/codemirror/codemirror.css">
<link rel="stylesheet" href="lib/codemirror/theme/3024-day.css">
<link rel="stylesheet" href="lib/codemirror/theme/3024-night.css">
<link rel="stylesheet" href="lib/codemirror/theme/abcdef.css">
<link rel="stylesheet" href="lib/codemirror/theme/ambiance-mobile.css">
<link rel="stylesheet" href="lib/codemirror/theme/ambiance.css">
<link rel="stylesheet" href="lib/codemirror/theme/base16-dark.css">
<link rel="stylesheet" href="lib/codemirror/theme/base16-light.css">
<link rel="stylesheet" href="lib/codemirror/theme/bespin.css">
<link rel="stylesheet" href="lib/codemirror/theme/blackboard.css">
<link rel="stylesheet" href="lib/codemirror/theme/cobalt.css">
<link rel="stylesheet" href="lib/codemirror/theme/colorforth.css">
<link rel="stylesheet" href="lib/codemirror/theme/darcula.css">
<link rel="stylesheet" href="lib/codemirror/theme/dracula.css">
<link rel="stylesheet" href="lib/codemirror/theme/duotone-dark.css">
<link rel="stylesheet" href="lib/codemirror/theme/duotone-light.css">
<link rel="stylesheet" href="lib/codemirror/theme/eclipse.css">
<link rel="stylesheet" href="lib/codemirror/theme/elegant.css">
<link rel="stylesheet" href="lib/codemirror/theme/erlang-dark.css">
<link rel="stylesheet" href="lib/codemirror/theme/gruvbox-dark.css">
<link rel="stylesheet" href="lib/codemirror/theme/hopscotch.css">
<link rel="stylesheet" href="lib/codemirror/theme/icecoder.css">
<link rel="stylesheet" href="lib/codemirror/theme/idea.css">
<link rel="stylesheet" href="lib/codemirror/theme/isotope.css">
<link rel="stylesheet" href="lib/codemirror/theme/lesser-dark.css">
<link rel="stylesheet" href="lib/codemirror/theme/liquibyte.css">
<link rel="stylesheet" href="lib/codemirror/theme/lucario.css">
<link rel="stylesheet" href="lib/codemirror/theme/material.css">
<link rel="stylesheet" href="lib/codemirror/theme/mbo.css">
<link rel="stylesheet" href="lib/codemirror/theme/mdn-like.css">
<link rel="stylesheet" href="lib/codemirror/theme/midnight.css">
<link rel="stylesheet" href="lib/codemirror/theme/monokai.css">
<link rel="stylesheet" href="lib/codemirror/theme/neat.css">
<link rel="stylesheet" href="lib/codemirror/theme/neo.css">
<link rel="stylesheet" href="lib/codemirror/theme/night.css">
<link rel="stylesheet" href="lib/codemirror/theme/oceanic-next.css">
<link rel="stylesheet" href="lib/codemirror/theme/panda-syntax.css">
<link rel="stylesheet" href="lib/codemirror/theme/paraiso-dark.css">
<link rel="stylesheet" href="lib/codemirror/theme/paraiso-light.css">
<link rel="stylesheet" href="lib/codemirror/theme/pastel-on-dark.css">
<link rel="stylesheet" href="lib/codemirror/theme/railscasts.css">
<link rel="stylesheet" href="lib/codemirror/theme/rubyblue.css">
<link rel="stylesheet" href="lib/codemirror/theme/seti.css">
<link rel="stylesheet" href="lib/codemirror/theme/shadowfox.css">
<link rel="stylesheet" href="lib/codemirror/theme/solarized.css">
<link rel="stylesheet" href="lib/codemirror/theme/ssms.css">
<link rel="stylesheet" href="lib/codemirror/theme/the-matrix.css">
<link rel="stylesheet" href="lib/codemirror/theme/tomorrow-night-bright.css">
<link rel="stylesheet" href="lib/codemirror/theme/tomorrow-night-eighties.css">
<link rel="stylesheet" href="lib/codemirror/theme/ttcn.css">
<link rel="stylesheet" href="lib/codemirror/theme/twilight.css">
<link rel="stylesheet" href="lib/codemirror/theme/vibrant-ink.css">
<link rel="stylesheet" href="lib/codemirror/theme/xq-dark.css">
<link rel="stylesheet" href="lib/codemirror/theme/xq-light.css">
<link rel="stylesheet" href="lib/codemirror/theme/yeti.css">
<link rel="stylesheet" href="lib/codemirror/theme/zenburn.css">
<script src="lib/codemirror/codemirror.js"></script>
<script src="lib/codemirror/mode/python/python.js"></script>
<script src="lib/codemirror/mode/shell/shell.js"></script>
<script src="lib/codemirror/mode/go/go.js"></script>
<script src="lib/codemirror/mode/javascript/javascript.js"></script>
<script src="lib/codemirror/mode/yaml/yaml.js"></script>
<script src="lib/codemirror/mode/ruby/ruby.js"></script>
<script src="lib/codemirror/mode/clike/clike.js"></script>
</head>
<body class="with-side-menu">
<header class="site-header">
<div class="container-fluid">
<a href="#" class="site-logo">
<img class="hidden-md-down" src="img/logo-2.png" alt="">
<img class="hidden-lg-down" src="img/logo-2-mob.png" alt="">
</a>
<button id="show-hide-sidebar-toggle" class="show-hide-sidebar">
<span>toggle menu</span>
</button>
<button class="hamburger hamburger--htla">
<span>toggle menu</span>
</button>
<div class="site-header-content">
<div class="site-header-content-in">
<div class="site-header-shown">
<button type="button" class="burger-right">
<i class="font-icon-menu-addl"></i>
</button>
</div>
<div class="mobile-menu-right-overlay"></div>
<div class="site-header-collapsed">
<div class="site-header-collapsed-in" style="margin-right: 0;">
<button class="btn btn-nav btn-inline btn-primary" id="generate-outputs" disabled>
Generate
</button>
<div class="dropdown" style="float: right;">
<button class="btn btn-rounded btn-inline btn-secondary dropdown-toggle" id="selected-region" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> </button>
<div class="dropdown-menu" aria-labelledby="selected-region">
<a class="dropdown-item region-item" data-region="us-east-1">US East (N. Virginia)</a>
<a class="dropdown-item region-item" data-region="us-east-2">US East (Ohio)</a>
<a class="dropdown-item region-item" data-region="us-west-1">US West (N. California)</a>
<a class="dropdown-item region-item" data-region="us-west-2">US West (Oregon)</a>
<a class="dropdown-item region-item" data-region="af-south-1">Africa (Cape Town)</a>
<a class="dropdown-item region-item" data-region="ap-east-1">Asia Pacific (Hong Kong)</a>
<a class="dropdown-item region-item" data-region="ap-south-1">Asia Pacific (Mumbai)</a>
<a class="dropdown-item region-item" data-region="ap-south-2">Asia Pacific (Hyderabad)</a>
<a class="dropdown-item region-item" data-region="ap-northeast-3">Asia Pacific (Osaka)</a>
<a class="dropdown-item region-item" data-region="ap-northeast-2">Asia Pacific (Seoul)</a>
<a class="dropdown-item region-item" data-region="ap-southeast-1">Asia Pacific (Singapore)</a>
<a class="dropdown-item region-item" data-region="ap-southeast-2">Asia Pacific (Sydney)</a>
<a class="dropdown-item region-item" data-region="ap-southeast-3">Asia Pacific (Jakarta)</a>
<a class="dropdown-item region-item" data-region="ap-southeast-4">Asia Pacific (Melbourne)</a>
<a class="dropdown-item region-item" data-region="ap-northeast-1">Asia Pacific (Tokyo)</a>
<a class="dropdown-item region-item" data-region="ca-central-1">Canada (Central)</a>
<a class="dropdown-item region-item" data-region="ca-west-1">Canada West (Calgary)</a>
<a class="dropdown-item region-item" data-region="eu-central-1">EU (Frankfurt)</a>
<a class="dropdown-item region-item" data-region="eu-central-2">EU (Zurich)</a>
<a class="dropdown-item region-item" data-region="eu-west-1">EU (Ireland)</a>
<a class="dropdown-item region-item" data-region="eu-west-2">EU (London)</a>
<a class="dropdown-item region-item" data-region="eu-south-1">EU (Milan)</a>
<a class="dropdown-item region-item" data-region="eu-south-2">EU (Spain)</a>
<a class="dropdown-item region-item" data-region="eu-west-3">EU (Paris)</a>
<a class="dropdown-item region-item" data-region="eu-north-1">EU (Stockholm)</a>
<a class="dropdown-item region-item" data-region="il-central-1">Israel (Tel Aviv)</a>
<a class="dropdown-item region-item" data-region="me-south-1">Middle East (Bahrain)</a>
<a class="dropdown-item region-item" data-region="me-central-1">Middle East (UAE)</a>
<a class="dropdown-item region-item" data-region="sa-east-1">South America (São Paulo)</a>
<a class="dropdown-item region-item" data-region="us-gov-east-1">AWS GovCloud (US-Gov-East)</a>
<a class="dropdown-item region-item" data-region="us-gov-west-1">AWS GovCloud (US-Gov-West)</a>
<a class="dropdown-item region-item" data-region="cn-north-1">China (Beijing)</a>
<a class="dropdown-item region-item" data-region="cn-northwest-1">China (Ningxia)</a>
</div>
</div>
<button disabled class="btn btn-sm btn-success scan-account" style="margin-right: 10px; float: right; padding-top: 3px; margin-bottom: 8px;">
Scan Account
</button>
<div class="site-header-search-container">
<form id="minisearch-form" class="site-header-search closed">
<input id="minisearch-input" type="text" placeholder="Search"/>
<button type="submit">
<span class="font-icon-search"></span>
</button>
<div class="overlay"></div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<div class="mobile-menu-left-overlay"></div>
<nav class="side-menu">
<ul class="side-menu-list">
<li class="gold">
<a href="#section-dashboard" data-category="dashboard">
<i class="font-icon font-icon-dashboard"></i>
<span class="lbl">Dashboard</span>
</a>
</li>
<li class="aquamarine">
<a href="#section-search" data-category="search">
<i class="font-icon glyphicon glyphicon-search"></i>
<span class="lbl">Search</span>
</a>
</li>
<li class="grey with-sub" data-category="setup">
<span>
<i class="font-icon glyphicon glyphicon-cog"></i>
<span class="lbl">Setup</span>
</span>
<ul>
<li><a href="#section-setup-introduction"><span class="lbl">Introduction</span></a></li>
<li><a href="#section-setup-credentials"><span class="lbl">Credentials</span></a></li>
<li><a href="#section-setup-parameters"><span class="lbl">Parameters</span></a></li>
<li><a href="#section-setup-settings"><span class="lbl">Settings</span></a></li>
</ul>
</li>
<li class="purple with-sub" data-category="outputs">
<span>
<i class="font-icon glyphicon glyphicon-list-alt"></i>
<span class="lbl">Outputs</span>
</span>
<ul>
<li><a href="#section-outputs-cloudformation"><span class="lbl">CloudFormation</span></a></li>
<li><a href="#section-outputs-tf"><span class="lbl">Terraform</span></a></li>
<li><a href="#section-outputs-troposphere"><span class="lbl">Troposphere</span></a></li>
<li><a href="#section-outputs-cdk"><span class="lbl">CDK (V1)</span></a></li>
<li><a href="#section-outputs-cdkv2"><span class="lbl">CDK (V2)</span></a></li>
<li><a href="#section-outputs-cdktf"><span class="lbl">CDK (Terraform)</span></a></li>
<li><a href="#section-outputs-pulumi"><span class="lbl">Pulumi</span></a></li>
<li><a href="#section-outputs-diagram"><span class="lbl">Diagram</span></a></li>
<!--<li><a href="#section-outputs-iam"><span class="lbl">IAM</span></a></li>-->
<li><a href="#section-outputs-raw"><span class="lbl">Raw Output (Debug)</span></a></li>
</ul>
</li>
</ul>
<section>
<header class="side-menu-title">Categories</header>
<ul class="side-menu-list">
<li class="gold with-sub" data-category="compute">
<span>
<i class="font-icon" style="left: 19px; top: 10px;"><img src="img/aws/Arch-Category_Compute_64.png" style="width: 16px; height: 16px;" /></i>
<span class="lbl">Compute</span>
</span>
<ul>
<li><a href="#section-compute-ec2"><span class="lbl">EC2</span></a></li>
<li><a href="#section-compute-lightsail"><span class="lbl">Lightsail</span></a></li>
<li><a href="#section-compute-lambda"><span class="lbl">Lambda</span></a></li>
<li><a href="#section-compute-batch"><span class="lbl">Batch</span></a></li>
<li><a href="#section-compute-elasticbeanstalk"><span class="lbl">Elastic Beanstalk</span></a></li>
<li><a href="#section-compute-ec2imagebuilder"><span class="lbl">EC2 Image Builder</span></a></li>
<li><a href="#section-compute-apprunner"><span class="lbl">App Runner</span></a></li>
</ul>
</li>
<li class="gold with-sub" data-category="containers">
<span>
<i class="font-icon" style="left: 19px; top: 10px;"><img src="img/aws/Arch-Category_Containers_64.png" style="width: 16px; height: 16px;" /></i>
<span class="lbl">Containers</span>
</span>
<ul>
<li><a href="#section-containers-ecr"><span class="lbl">ECR</span></a></li>
<li><a href="#section-containers-ecs"><span class="lbl">ECS</span></a></li>
<li><a href="#section-containers-eks"><span class="lbl">EKS</span></a></li>
</ul>
</li>
<li class="green with-sub" data-category="storage">
<span>
<i class="font-icon" style="left: 19px; top: 10px;"><img src="img/aws/Arch-Category_Storage_64.png" style="width: 16px; height: 16px;" /></i>
<span class="lbl">Storage</span>
</span>
<ul>
<li><a href="#section-storage-s3"><span class="lbl">S3</span></a></li>
<li><a href="#section-storage-efs"><span class="lbl">EFS</span></a></li>
<li><a href="#section-storage-fsx"><span class="lbl">FSx</span></a></li>
<li><a href="#section-storage-glacier"><span class="lbl">Glacier</span></a></li>
<li><a href="#section-storage-storagegateway"><span class="lbl">Storage Gateway</span></a></li>
<li><a href="#section-storage-backup"><span class="lbl">Backup</span></a></li>
</ul>
</li>
<li class="blue with-sub" data-category="database">
<span>
<i class="font-icon" style="left: 19px; top: 10px;"><img src="img/aws/Arch-Category_Database_64.png" style="width: 16px; height: 16px;" /></i>
<span class="lbl">Database</span>
</span>
<ul>
<li><a href="#section-database-rds"><span class="lbl">RDS</span></a></li>
<li><a href="#section-database-dynamodb"><span class="lbl">DynamoDB</span></a></li>
<li><a href="#section-database-elasticache"><span class="lbl">ElastiCache</span></a></li>
<li><a href="#section-database-neptune"><span class="lbl">Neptune</span></a></li>
<li><a href="#section-database-redshift"><span class="lbl">Redshift</span></a></li>
<li><a href="#section-database-qldb"><span class="lbl">QLDB</span></a></li>
<li><a href="#section-database-documentdb"><span class="lbl">DocumentDB</span></a></li>
<li><a href="#section-database-timestream"><span class="lbl">Timestream</span></a></li>
<li><a href="#section-database-memorydb"><span class="lbl">MemoryDB</span></a></li>
</ul>
</li>
<li class="aquamarine with-sub" data-category="migrationandtransfer">
<span>
<i class="font-icon" style="left: 19px; top: 10px;"><img src="img/aws/Arch-Category_Migration-Transfer_64.png" style="width: 16px; height: 16px;" /></i>
<span class="lbl">Migration & Transfer</span>
</span>
<ul>
<li><a href="#section-migrationandtransfer-migrationhub"><span class="lbl">Migration Hub</span></a></li>
<li><a href="#section-migrationandtransfer-databasemigrationservice"><span class="lbl">Database Migration Service</span></a></li>
<li><a href="#section-migrationandtransfer-transfer"><span class="lbl">Transfer</span></a></li>
<li><a href="#section-migrationandtransfer-datasync"><span class="lbl">DataSync</span></a></li>
</ul>
</li>
<li class="purple with-sub" data-category="networkingandcontentdelivery">
<span>
<i class="font-icon" style="left: 19px; top: 10px;"><img src="img/aws/Arch-Category_Networking-Content-Delivery_64.png" style="width: 16px; height: 16px;" /></i>
<span class="lbl">Networking & Content Delivery</span>
</span>
<ul>
<li><a href="#section-networkingandcontentdelivery-vpc"><span class="lbl">VPC</span></a></li>
<li><a href="#section-networkingandcontentdelivery-cloudfront"><span class="lbl">CloudFront</span></a></li>
<li><a href="#section-networkingandcontentdelivery-route53"><span class="lbl">Route 53</span></a></li>
<li><a href="#section-networkingandcontentdelivery-apigateway"><span class="lbl">API Gateway</span></a></li>
<li><a href="#section-networkingandcontentdelivery-directconnect"><span class="lbl">Direct Connect</span></a></li>
<li><a href="#section-networkingandcontentdelivery-appmesh"><span class="lbl">App Mesh</span></a></li>
<li><a href="#section-networkingandcontentdelivery-cloudmap"><span class="lbl">Cloud Map</span></a></li>
<li><a href="#section-networkingandcontentdelivery-globalaccelerator"><span class="lbl">Global Accelerator</span></a></li>
<li><a href="#section-networkingandcontentdelivery-vpcipam"><span class="lbl">VPC IPAM</span></a></li>
</ul>
</li>
<li class="blue with-sub" data-category="developertools">
<span>
<i class="font-icon" style="left: 19px; top: 10px;"><img src="img/aws/Arch-Category_Developer-Tools_64.png" style="width: 16px; height: 16px;" /></i>
<span class="lbl">Developer Tools</span>
</span>
<ul>
<!--<li><a href="#section-developertools-codestar"><span class="lbl">CodeStar</span></a></li>-->
<!--<li><a href="#section-developertools-codecommit"><span class="lbl">CodeCommit</span></a></li>-->
<li><a href="#section-developertools-codeartifact"><span class="lbl">CodeArtifact</span></a></li>
<li><a href="#section-developertools-codebuild"><span class="lbl">CodeBuild</span></a></li>
<li><a href="#section-developertools-codedeploy"><span class="lbl">CodeDeploy</span></a></li>
<li><a href="#section-developertools-codepipeline"><span class="lbl">CodePipeline</span></a></li>
<li><a href="#section-developertools-cloud9"><span class="lbl">Cloud9</span></a></li>
<li><a href="#section-developertools-xray"><span class="lbl">X-Ray</span></a></li>
<li><a href="#section-developertools-fis"><span class="lbl">FIS</span></a></li>
</ul>
</li>
<li class="red with-sub" data-category="robotics">
<span>
<i class="font-icon" style="left: 19px; top: 10px;"><img src="img/aws/Arch-Category_Robotics_64.png" style="width: 16px; height: 16px;" /></i>
<span class="lbl">Robotics</span>
</span>
<ul>
<li><a href="#section-robotics-robomaker"><span class="lbl">RoboMaker</span></a></li>
</ul>
</li>
<li class="gold with-sub" data-category="blockchain">
<span>
<i class="font-icon" style="left: 19px; top: 10px;"><img src="img/aws/Arch-Category_Blockchain_64.png" style="width: 16px; height: 16px;" /></i>
<span class="lbl">Blockchain</span>
</span>
<ul>
<li><a href="#section-blockchain-managedblockchain"><span class="lbl">Managed Blockchain</span></a></li>
</ul>
</li>
<li class="blue with-sub" data-category="satellite">
<span>
<i class="font-icon" style="left: 19px; top: 10px;"><img src="img/aws/Arch-Category_Satellite_64.png" style="width: 16px; height: 16px;" /></i>
<span class="lbl">Satellite</span>
</span>
<ul>
<li><a href="#section-satellite-groundstation"><span class="lbl">Ground Station</span></a></li>
</ul>
</li>
<li class="pink with-sub" data-category="managementandgovernance">
<span>
<i class="font-icon" style="left: 19px; top: 10px;"><img src="img/aws/Arch-Category_Management-Governance_64.png" style="width: 16px; height: 16px;" /></i>
<span class="lbl">Management & Governance</span>
</span>
<ul>
<li><a href="#section-managementandgovernance-organizations"><span class="lbl">Organizations</span></a></li>
<li><a href="#section-managementandgovernance-cloudwatch"><span class="lbl">CloudWatch</span></a></li>
<li><a href="#section-managementandgovernance-autoscaling"><span class="lbl">Auto Scaling</span></a></li>
<li><a href="#section-managementandgovernance-cloudtrail"><span class="lbl">CloudTrail</span></a></li>
<li><a href="#section-managementandgovernance-config"><span class="lbl">Config</span></a></li>
<li><a href="#section-managementandgovernance-opsworks"><span class="lbl">OpsWorks</span></a></li>
<li><a href="#section-managementandgovernance-servicecatalog"><span class="lbl">Service Catalog</span></a></li>
<li><a href="#section-managementandgovernance-systemsmanager"><span class="lbl">Systems Manager</span></a></li>
<li><a href="#section-managementandgovernance-appconfig"><span class="lbl">AppConfig</span></a></li>
<li><a href="#section-managementandgovernance-licensemanager"><span class="lbl">License Manager</span></a></li>
<li><a href="#section-managementandgovernance-prometheus"><span class="lbl">Prometheus</span></a></li>
<li><a href="#section-managementandgovernance-resiliencehub"><span class="lbl">Resilience Hub</span></a></li>
<li><a href="#section-managementandgovernance-incidentmanager"><span class="lbl">Incident Manager</span></a></li>
</ul>
</li>
<li class="gold with-sub" data-category="mediaservices">
<span>
<i class="font-icon" style="left: 19px; top: 10px;"><img src="img/aws/Arch-Category_Media-Services_64.png" style="width: 16px; height: 16px;" /></i>
<span class="lbl">Media Services</span>
</span>
<ul>
<li><a href="#section-mediaservices-elastictranscoder"><span class="lbl">Elastic Transcoder</span></a></li>
<li><a href="#section-mediaservices-mediaconnect"><span class="lbl">MediaConnect</span></a></li>
<li><a href="#section-mediaservices-mediaconvert"><span class="lbl">MediaConvert</span></a></li>
<li><a href="#section-mediaservices-medialive"><span class="lbl">MediaLive</span></a></li>
<li><a href="#section-mediaservices-mediapackage"><span class="lbl">MediaPackage</span></a></li>
<li><a href="#section-mediaservices-mediastore"><span class="lbl">MediaStore</span></a></li>
<li><a href="#section-mediaservices-interactivevideoservice"><span class="lbl">Interactive Video Service</span></a></li>
<li><a href="#section-mediaservices-nimblestudio"><span class="lbl">Nimble Studio</span></a></li>
</ul>
</li>
<li class="aquamarine with-sub" data-category="machinelearning">
<span>
<i class="font-icon" style="left: 19px; top: 10px;"><img src="img/aws/Arch-Category_Machine-Learning_64.png" style="width: 16px; height: 16px;" /></i>
<span class="lbl">Machine Learning</span>
</span>
<ul>
<li><a href="#section-machinelearning-sagemaker"><span class="lbl">SageMaker</span></a></li>
<li><a href="#section-machinelearning-codeguru"><span class="lbl">CodeGuru</span></a></li>
<li><a href="#section-machinelearning-devopsguru"><span class="lbl">DevOps Guru</span></a></li>
<li><a href="#section-machinelearning-forecast"><span class="lbl">Forecast</span></a></li>
<li><a href="#section-machinelearning-personalize"><span class="lbl">Personalize</span></a></li>
<li><a href="#section-machinelearning-frauddetector"><span class="lbl">Fraud Detector</span></a></li>
<li><a href="#section-machinelearning-kendra"><span class="lbl">Kendra</span></a></li>
<li><a href="#section-machinelearning-lex"><span class="lbl">Lex</span></a></li>
<li><a href="#section-machinelearning-rekognition"><span class="lbl">Rekognition</span></a></li>
<li><a href="#section-machinelearning-panorama"><span class="lbl">Panorama</span></a></li>
<li><a href="#section-machinelearning-healthlake"><span class="lbl">HealthLake</span></a></li>
<li><a href="#section-machinelearning-lookoutforvision"><span class="lbl">Lookout For Vision</span></a></li>
<li><a href="#section-machinelearning-lookoutforequipment"><span class="lbl">Lookout For Equipment</span></a></li>
<li><a href="#section-machinelearning-lookoutformetrics"><span class="lbl">Lookout For Metrics</span></a></li>
</ul>
</li>
<li class="purple with-sub" data-category="analytics">
<span>
<i class="font-icon" style="left: 19px; top: 10px;"><img src="img/aws/Arch-Category_Analytics_64@5x.png" style="width: 16px; height: 16px;" /></i>
<span class="lbl">Analytics</span>
</span>
<ul>
<li><a href="#section-analytics-athena"><span class="lbl">Athena</span></a></li>
<li><a href="#section-analytics-emr"><span class="lbl">EMR</span></a></li>
<li><a href="#section-analytics-opensearch"><span class="lbl">OpenSearch</span></a></li>
<li><a href="#section-analytics-kinesis"><span class="lbl">Kinesis</span></a></li>
<li><a href="#section-analytics-quicksight"><span class="lbl">QuickSight</span></a></li>
<li><a href="#section-analytics-datapipeline"><span class="lbl">Data Pipeline</span></a></li>
<li><a href="#section-analytics-glue"><span class="lbl">Glue</span></a></li>
<li><a href="#section-analytics-lakeformation"><span class="lbl">Lake Formation</span></a></li>
<li><a href="#section-analytics-msk"><span class="lbl">MSK</span></a></li>
<li><a href="#section-analytics-databrew"><span class="lbl">DataBrew</span></a></li>
<li><a href="#section-analytics-finspace"><span class="lbl">FinSpace</span></a></li>
</ul>
</li>
<li class="red with-sub" data-category="securityidentityandcompliance">
<span>
<i class="font-icon" style="left: 19px; top: 10px;"><img src="img/aws/Arch-Category_Security-Identity-Compliance_64.png" style="width: 16px; height: 16px;" /></i>
<span class="lbl">Security, Identity, & Compliance</span>
</span>
<ul>
<li><a href="#section-securityidentityandcompliance-iam"><span class="lbl">IAM</span></a></li>
<li><a href="#section-securityidentityandcompliance-resourceaccessmanager"><span class="lbl">Resource Access Manager</span></a></li>
<li><a href="#section-securityidentityandcompliance-cognito"><span class="lbl">Cognito</span></a></li>
<li><a href="#section-securityidentityandcompliance-secretsmanager"><span class="lbl">Secrets Manager</span></a></li>
<li><a href="#section-securityidentityandcompliance-guardduty"><span class="lbl">GuardDuty</span></a></li>
<li><a href="#section-securityidentityandcompliance-inspector"><span class="lbl">Inspector</span></a></li>
<li><a href="#section-securityidentityandcompliance-macie"><span class="lbl">Macie</span></a></li>
<li><a href="#section-securityidentityandcompliance-singlesignon"><span class="lbl">Single Sign-On</span></a></li>
<li><a href="#section-securityidentityandcompliance-certificatemanager"><span class="lbl">Certificate Manager</span></a></li>
<li><a href="#section-securityidentityandcompliance-kms"><span class="lbl">KMS</span></a></li>
<li><a href="#section-securityidentityandcompliance-cloudhsm"><span class="lbl">CloudHSM</span></a></li>
<li><a href="#section-securityidentityandcompliance-directoryservice"><span class="lbl">Directory Service</span></a></li>
<li><a href="#section-securityidentityandcompliance-wafandshield"><span class="lbl">WAF & Shield</span></a></li>
<li><a href="#section-securityidentityandcompliance-securityhub"><span class="lbl">Security Hub</span></a></li>
<li><a href="#section-securityidentityandcompliance-detective"><span class="lbl">Detective</span></a></li>
<li><a href="#section-securityidentityandcompliance-auditmanager"><span class="lbl">Audit Manager</span></a></li>
<li><a href="#section-securityidentityandcompliance-signer"><span class="lbl">Signer</span></a></li>
</ul>
</li>
<li class="red with-sub" data-category="mobile">
<span>
<i class="font-icon" style="left: 19px; top: 10px;"><img src="img/aws/Arch-Category_Front-End-Web-Mobile_64.png" style="width: 16px; height: 16px;" /></i>
<span class="lbl">Front-end Web & Mobile</span>
</span>
<ul>
<li><a href="#section-mobile-amplify"><span class="lbl">Amplify</span></a></li>
<li><a href="#section-mobile-appsync"><span class="lbl">AppSync</span></a></li>
<li><a href="#section-mobile-devicefarm"><span class="lbl">Device Farm</span></a></li>
<li><a href="#section-mobile-locationservice"><span class="lbl">Location Service</span></a></li>
</ul>
</li>
<li class="pink with-sub" data-category="applicationintegration">
<span>
<i class="font-icon" style="left: 19px; top: 10px;"><img src="img/aws/Arch-Category_Application-Integration_64.png" style="width: 16px; height: 16px;" /></i>
<span class="lbl">Application Integration</span>
</span>
<ul>
<li><a href="#section-applicationintegration-stepfunctions"><span class="lbl">Step Functions</span></a></li>
<li><a href="#section-applicationintegration-appflow"><span class="lbl">AppFlow</span></a></li>
<li><a href="#section-applicationintegration-eventbridge"><span class="lbl">EventBridge</span></a></li>
<li><a href="#section-applicationintegration-amazonmq"><span class="lbl">Amazon MQ</span></a></li>
<li><a href="#section-applicationintegration-sns"><span class="lbl">SNS</span></a></li>
<li><a href="#section-applicationintegration-sqs"><span class="lbl">SQS</span></a></li>
<li><a href="#section-applicationintegration-swf"><span class="lbl">SWF</span></a></li>
<li><a href="#section-applicationintegration-managedapacheairflow"><span class="lbl">Managed Apache Airflow</span></a></li>
</ul>
</li>
<li class="green with-sub" data-category="awscostmanagement">
<span>
<i class="font-icon" style="left: 19px; top: 10px;"><img src="img/aws/Arch-Category_AWS-Cost-Management_64.png" style="width: 16px; height: 16px;" /></i>
<span class="lbl">AWS Cost Management</span>
</span>
<ul>
<li><a href="#section-awscostmanagement-costexplorer"><span class="lbl">Cost Explorer</span></a></li>
<li><a href="#section-awscostmanagement-budgets"><span class="lbl">Budgets</span></a></li>
<li><a href="#section-awscostmanagement-billingconductor"><span class="lbl">Billing Conductor</span></a></li>
</ul>
</li>
<li class="red with-sub" data-category="businessapplications">
<span>
<i class="font-icon" style="left: 19px; top: 10px;"><img src="img/aws/Arch-Category_Business-Applications_64.png" style="width: 16px; height: 16px;" /></i>
<span class="lbl">Business Applications</span>
</span>
<ul>
<li><a href="#section-businessapplications-connect"><span class="lbl">Connect</span></a></li>
<li><a href="#section-businessapplications-pinpoint"><span class="lbl">Pinpoint</span></a></li>
<li><a href="#section-businessapplications-ses"><span class="lbl">SES</span></a></li>
</ul>
</li>
<li class="red with-sub" data-category="endusercomputing">
<span>
<i class="font-icon" style="left: 19px; top: 10px;"><img src="img/aws/Arch-Category_End-User-Computing_64.png" style="width: 16px; height: 16px;" /></i>
<span class="lbl">End User Computing</span>
</span>
<ul>
<li><a href="#section-endusercomputing-workspaces"><span class="lbl">WorkSpaces</span></a></li>
<li><a href="#section-endusercomputing-appstream"><span class="lbl">AppStream</span></a></li>
<li><a href="#section-endusercomputing-worklink"><span class="lbl">WorkLink</span></a></li>
</ul>
</li>
<li class="green with-sub" data-category="internetofthings">
<span>
<i class="font-icon" style="left: 19px; top: 10px;"><img src="img/aws/Arch-Category_Internet-of-Things_64.png" style="width: 16px; height: 16px;" /></i>
<span class="lbl">Internet Of Things</span>
</span>
<ul>
<li><a href="#section-internetofthings-core"><span class="lbl">Core</span></a></li>
<li><a href="#section-internetofthings-1click"><span class="lbl">1-Click</span></a></li>
<li><a href="#section-internetofthings-analytics"><span class="lbl">Analytics</span></a></li>
<li><a href="#section-internetofthings-devicemanagement"><span class="lbl">Device Management</span></a></li>
<li><a href="#section-internetofthings-events"><span class="lbl">Events</span></a></li>
<li><a href="#section-internetofthings-greengrass"><span class="lbl">Greengrass</span></a></li>
<li><a href="#section-internetofthings-sitewise"><span class="lbl">SiteWise</span></a></li>
<li><a href="#section-internetofthings-thingsgraph"><span class="lbl">Things Graph</span></a></li>
</ul>
</li>
<li class="purple with-sub" data-category="gamedevelopment">
<span>
<i class="font-icon" style="left: 19px; top: 10px;"><img src="img/aws/Arch-Category_Game-Tech_64.png" style="width: 16px; height: 16px;" /></i>
<span class="lbl">Game Development</span>
</span>
<ul>
<li><a href="#section-gamedevelopment-gamelift"><span class="lbl">GameLift</span></a></li>
</ul>
</li>
<li class="grey with-sub" data-category="other">
<span>
<i class="font-icon" style="left: 19px; top: 10px;"><img src="img/aws/General_light-bg.png" style="width: 16px; height: 16px;" /></i>
<span class="lbl">Other</span>
</span>
<ul>
<li><a href="#section-other-simpledb"><span class="lbl">SimpleDB</span></a></li>
<li><a href="#section-other-resourcegroups"><span class="lbl">Resource Groups</span></a></li>
<li><a href="#section-other-servicequotas"><span class="lbl">Service Quotas</span></a></li>
<li><a href="#section-other-costandusagereports"><span class="lbl">Cost & Usage Reports</span></a></li>
</ul>
</li>
</ul>
</section>
</nav>
<div class="page-content">
<div class="container-fluid">
<div class="modal fade" id="relatedmodal" tabindex="-1" role="dialog" aria-labelledby="relatedmodal" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<!--<div class="modal-header">
<button type="button" class="modal-close" data-dismiss="modal" aria-label="Close">
<i class="font-icon-close-2"></i>
</button>
<h4 class="modal-title" id="relatedmodal">Related Resources</h4>
</div>-->
<div class="modal-body">
<p>Would you like to add these related resources?</p>
<div class="checkbox">
<input type="checkbox" id="add-related-selectall" class="related-check-all">
<label for="add-related-selectall">Select All</label>
</div>
<div id="relatedresources"></div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-primary" id="related-add-selected-button">Add Selected</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="importmodal" tabindex="-1" role="dialog" aria-labelledby="importmodal" aria-hidden="true">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-body">
<br />
<h4 class="modal-title">Import into a CloudFormation Stack (<a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/resource-import.html" target="_blank">What is this?</a>)</h4>
<p>Enter the details below to create a CloudFormation Stack containing the selected resources.</p>
<fieldset class="form-group">
<label class="form-label semibold" for="import-stackname">Stack Name</label>
<input type="text" class="form-control" id="import-stackname" placeholder="MyStack" value="">
</fieldset>
<fieldset class="form-group">
<label class="form-label semibold" for="import-deletionpolicy">Deletion Policy (<a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-deletionpolicy.html" target="_blank">What is this?</a>)</label>
<select id="import-deletionpolicy" class="select2-arrow manual select2-no-search-arrow">
<option value="Retain">Retain</option>
<option value="Delete">Delete</option>
</select>
</fieldset>
<small>You can also <a id="import-download-template" href="#section-outputs-cloudformation">download the template</a> only.</small>
<div id="import-warnings"></div>
<br />
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-primary" disabled id="import-button">Create Change Set</button>
</div>
</div>
</div>
</div>
<header class="section-header">
<div class="tbl">
<div class="tbl-row">
<div id="header-breadcrumb" class="tbl-cell" style="visibility: hidden;">
<h3 id="header-title"></h3>
<ol class="breadcrumb breadcrumb-simple">
<li><a id="header-breadcrumb1" href="#section-setup-introduction"></a></li>
<li id="header-breadcrumb2" class="active"></li>
</ol>
</div>
<button id="header-button-clear-outputs" type="button" class="f2-header-button btn btn-danger-outline" style="margin-left: 16px; display: none;"><i class="fa fa-trash-o"></i> Clear All</button>
<button id="header-button-import-cfn" type="button" class="f2-header-button btn btn-info-outline" style="margin-left: 16px; display: none;"><i class="fa fa-cloud-upload"></i> Import</button>
<button id="header-button-download-diagram" type="button" class="f2-header-button btn btn-info-outline" style="margin-left: 16px; display: none;"><i class="fa fa-download"></i> Download PNG</button>
<button id="header-button-copy-cfn" type="button" class="f2-header-button btn btn-default-outline" style="display: none;"><i class="fa fa-files-o"></i> Copy</button>
<button id="header-button-copy-tf" type="button" class="f2-header-button btn btn-default-outline" style="display: none;"><i class="fa fa-files-o"></i> Copy</button>
<button id="header-button-copy-troposphere" type="button" class="f2-header-button btn btn-default-outline" style="display: none;"><i class="fa fa-files-o"></i> Copy</button>
<button id="header-button-copy-cdk" type="button" class="f2-header-button btn btn-default-outline" style="display: none;"><i class="fa fa-files-o"></i> Copy</button>
<button id="header-button-copy-cdkv2" type="button" class="f2-header-button btn btn-default-outline" style="display: none;"><i class="fa fa-files-o"></i> Copy</button>
<button id="header-button-copy-cdktf" type="button" class="f2-header-button btn btn-default-outline" style="display: none;"><i class="fa fa-files-o"></i> Copy</button>
<button id="header-button-copy-pulumi" type="button" class="f2-header-button btn btn-default-outline" style="display: none;"><i class="fa fa-files-o"></i> Copy</button>
<button id="header-button-copy-raw" type="button" class="f2-header-button btn btn-default-outline" style="display: none;"><i class="fa fa-files-o"></i> Copy</button>
</div>
</div>
</header>
<section id="section-dashboard" data-section-breadcrumb1-title="Dashboard" data-section-breadcrumb1-link="#section-dashboard" data-section-title="Dashboard" class="former2-section" style="display: none;">
<div class="row">
<div class="col-md-12">
<section class="box-typical box-typical-padding" style="padding: 40px 40px 30px 40px;">
<div class="row">
<div class="col-md-4">
<table style="border: none; margin-bottom: 16px;">
<tr>
<td><img src="img/aws/Arch-Category_Compute_64.png" style="width: 44px; height: 44px; padding: 2px;" /></td>
<td style="padding-left: 12px;"><h4 style="vertical-align: middle; margin-top: 6px; margin-bottom: 6px;">Compute</h4></td>
</tr>
<tr>
<td> </td>
<td style="padding-left: 12px;">
<a href="#section-compute-ec2" style="font-weight: 600;">EC2</a><br />
<a href="#section-compute-lightsail" style="font-weight: 600;">Lightsail</a><br />
<a href="#section-compute-lambda" style="font-weight: 600;">Lambda</a><br />
<a href="#section-compute-batch" style="font-weight: 600;">Batch</a><br />
<a href="#section-compute-elasticbeanstalk" style="font-weight: 600;">Elastic Beanstalk</a><br />
<a href="#section-compute-ec2imagebuilder" style="font-weight: 600;">EC2 Image Builder</a><br />
<a href="#section-compute-apprunner" style="font-weight: 600;">App Runner</a>
</td>
</tr>
</table>
<table style="border: none; margin-bottom: 16px;">
<tr>
<td><img src="img/aws/Arch-Category_Containers_64.png" style="width: 44px; height: 44px; padding: 2px;" /></td>
<td style="padding-left: 12px;"><h4 style="vertical-align: middle; margin-top: 6px; margin-bottom: 6px;">Containers</h4></td>
</tr>
<tr>
<td> </td>
<td style="padding-left: 12px;">
<a href="#section-containers-ecr" style="font-weight: 600;">ECR</a><br />
<a href="#section-containers-ecs" style="font-weight: 600;">ECS</a><br />
<a href="#section-containers-eks" style="font-weight: 600;">EKS</a><br />
</td>
</tr>
</table>
<table style="border: none; margin-bottom: 16px;">
<tr>
<td><img src="img/aws/Arch-Category_Storage_64.png" style="width: 44px; height: 44px; padding: 2px;" /></td>
<td style="padding-left: 12px;"><h4 style="vertical-align: middle; margin-top: 6px; margin-bottom: 6px;">Storage</h4></td>
</tr>
<tr>
<td> </td>
<td style="padding-left: 12px;">
<a href="#section-storage-s3" style="font-weight: 600;">S3</a><br />
<a href="#section-storage-efs" style="font-weight: 600;">EFS</a><br />
<a href="#section-storage-fsx" style="font-weight: 600;">FSx</a><br />
<a href="#section-storage-glacier" style="font-weight: 600;">Glacier</a><br />
<a href="#section-storage-storagegateway" style="font-weight: 600;">Storage Gateway</a><br />
<a href="#section-storage-backup" style="font-weight: 600;">Backup</a>
</td>
</tr>
</table>
<table style="border: none; margin-bottom: 16px;">
<tr>
<td><img src="img/aws/Arch-Category_Database_64.png" style="width: 44px; height: 44px; padding: 2px;" /></td>
<td style="padding-left: 12px;"><h4 style="vertical-align: middle; margin-top: 6px; margin-bottom: 6px;">Database</h4></td>
</tr>
<tr>
<td> </td>
<td style="padding-left: 12px;">
<a href="#section-database-rds" style="font-weight: 600;">RDS</a><br />
<a href="#section-database-dynamodb" style="font-weight: 600;">DynamoDB</a><br />
<a href="#section-database-elasticache" style="font-weight: 600;">ElastiCache</a><br />
<a href="#section-database-neptune" style="font-weight: 600;">Neptune</a><br />
<a href="#section-database-redshift" style="font-weight: 600;">Redshift</a><br />
<a href="#section-database-qldb" style="font-weight: 600;">QLDB</a><br />
<a href="#section-database-documentdb" style="font-weight: 600;">DocumentDB</a><br />
<a href="#section-database-timestream" style="font-weight: 600;">Timestream</a><br />
<a href="#section-database-memorydb" style="font-weight: 600;">MemoryDB</a>
</td>
</tr>
</table>
<table style="border: none; margin-bottom: 16px;">
<tr>
<td><img src="img/aws/Arch-Category_Migration-Transfer_64.png" style="width: 44px; height: 44px; padding: 2px;" /></td>
<td style="padding-left: 12px;"><h4 style="vertical-align: middle; margin-top: 6px; margin-bottom: 6px;">Migration & Transfer</h4></td>
</tr>
<tr>
<td> </td>
<td style="padding-left: 12px;">
<a href="#section-migrationandtransfer-migrationhub" style="font-weight: 600;">Migration Hub</a><br />
<a href="#section-migrationandtransfer-databasemigrationservice" style="font-weight: 600;">Database Migration Service</a><br />
<a href="#section-migrationandtransfer-transfer" style="font-weight: 600;">Transfer</a><br />
<a href="#section-migrationandtransfer-datasync" style="font-weight: 600;">DataSync</a>
</td>
</tr>
</table>
<table style="border: none; margin-bottom: 16px;">
<tr>
<td><img src="img/aws/Arch-Category_Networking-Content-Delivery_64.png" style="width: 44px; height: 44px; padding: 2px;" /></td>
<td style="padding-left: 12px;"><h4 style="vertical-align: middle; margin-top: 6px; margin-bottom: 6px;">Networking & Content Delivery</h4></td>
</tr>
<tr>
<td> </td>
<td style="padding-left: 12px;">
<a href="#section-networkingandcontentdelivery-vpc" style="font-weight: 600;">VPC</a><br />
<a href="#section-networkingandcontentdelivery-cloudfront" style="font-weight: 600;">CloudFront</a><br />
<a href="#section-networkingandcontentdelivery-route53" style="font-weight: 600;">Route 53</a><br />
<a href="#section-networkingandcontentdelivery-apigateway" style="font-weight: 600;">API Gateway</a><br />
<a href="#section-networkingandcontentdelivery-directconnect" style="font-weight: 600;">Direct Connect</a><br />
<a href="#section-networkingandcontentdelivery-appmesh" style="font-weight: 600;">App Mesh</a><br />
<a href="#section-networkingandcontentdelivery-cloudmap" style="font-weight: 600;">Cloud Map</a><br />
<a href="#section-networkingandcontentdelivery-globalaccelerator" style="font-weight: 600;">Global Accelerator</a><br />
<a href="#section-networkingandcontentdelivery-vpcipam" style="font-weight: 600;">VPC IPAM</a>
</td>
</tr>
</table>
<table style="border: none; margin-bottom: 16px;">
<tr>
<td><img src="img/aws/Arch-Category_Developer-Tools_64.png" style="width: 44px; height: 44px; padding: 2px;" /></td>
<td style="padding-left: 12px;"><h4 style="vertical-align: middle; margin-top: 6px; margin-bottom: 6px;">Developer Tools</h4></td>
</tr>
<tr>
<td> </td>
<td style="padding-left: 12px;">
<!--<a href="#section-developertools-codestar" style="font-weight: 600;">CodeStar</a><br />-->
<!--<a href="#section-developertools-codecommit" style="font-weight: 600;">CodeCommit</a><br />-->
<a href="#section-developertools-codeartifact" style="font-weight: 600;">CodeArtifact</a><br />
<a href="#section-developertools-codebuild" style="font-weight: 600;">CodeBuild</a><br />
<a href="#section-developertools-codedeploy" style="font-weight: 600;">CodeDeploy</a><br />
<a href="#section-developertools-codepipeline" style="font-weight: 600;">CodePipeline</a><br />
<a href="#section-developertools-cloud9" style="font-weight: 600;">Cloud9</a><br />
<a href="#section-developertools-xray" style="font-weight: 600;">X-Ray</a><br />
<a href="#section-developertools-fis" style="font-weight: 600;">FIS</a>
</td>
</tr>
</table>
<table style="border: none; margin-bottom: 16px;">
<tr>
<td><img src="img/aws/Arch-Category_Robotics_64.png" style="width: 44px; height: 44px; padding: 2px;" /></td>
<td style="padding-left: 12px;"><h4 style="vertical-align: middle; margin-top: 6px; margin-bottom: 6px;">Robotics</h4></td>
</tr>
<tr>
<td> </td>
<td style="padding-left: 12px;">
<a href="#section-robotics-robomaker" style="font-weight: 600;">RoboMaker</a>
</td>
</tr>
</table>
<table style="border: none; margin-bottom: 16px;">
<tr>
<td><img src="img/aws/Arch-Category_Blockchain_64.png" style="width: 44px; height: 44px; padding: 2px;" /></td>
<td style="padding-left: 12px;"><h4 style="vertical-align: middle; margin-top: 6px; margin-bottom: 6px;">Blockchain</h4></td>
</tr>
<tr>
<td> </td>
<td style="padding-left: 12px;">
<a href="#section-blockchain-managedblockchain" style="font-weight: 600;">Managed Blockchain</a>
</td>
</tr>
</table>
</div>
<div class="col-md-4">
<table style="border: none; margin-bottom: 16px;">
<tr>
<td><img src="img/aws/Arch-Category_Satellite_64.png" style="width: 44px; height: 44px; padding: 2px;" /></td>
<td style="padding-left: 12px;"><h4 style="vertical-align: middle; margin-top: 6px; margin-bottom: 6px;">Satellite</h4></td>
</tr>
<tr>
<td> </td>
<td style="padding-left: 12px;">
<a href="#section-satellite-groundstation" style="font-weight: 600;">Ground Station</a>
</td>
</tr>
</table>
<table style="border: none; margin-bottom: 16px;">
<tr>
<td><img src="img/aws/Arch-Category_Management-Governance_64.png" style="width: 44px; height: 44px; padding: 2px;" /></td>
<td style="padding-left: 12px;"><h4 style="vertical-align: middle; margin-top: 6px; margin-bottom: 6px;">Management & Governance</h4></td>
</tr>
<tr>
<td> </td>
<td style="padding-left: 12px;">
<a href="#section-managementandgovernance-organizations" style="font-weight: 600;">Organizations</a><br />
<a href="#section-managementandgovernance-cloudwatch" style="font-weight: 600;">CloudWatch</a><br />
<a href="#section-managementandgovernance-autoscaling" style="font-weight: 600;">Auto Scaling</a><br />
<a href="#section-managementandgovernance-cloudtrail" style="font-weight: 600;">CloudTrail</a><br />
<a href="#section-managementandgovernance-config" style="font-weight: 600;">Config</a><br />
<a href="#section-managementandgovernance-opsworks" style="font-weight: 600;">OpsWorks</a><br />
<a href="#section-managementandgovernance-servicecatalog" style="font-weight: 600;">Service Catalog</a><br />
<a href="#section-managementandgovernance-systemsmanager" style="font-weight: 600;">Systems Manager</a><br />
<a href="#section-managementandgovernance-appconfig" style="font-weight: 600;">AppConfig</a><br />
<a href="#section-managementandgovernance-licensemanager" style="font-weight: 600;">License Manager</a><br />
<a href="#section-managementandgovernance-prometheus" style="font-weight: 600;">Prometheus</a><br />
<a href="#section-managementandgovernance-resiliencehub" style="font-weight: 600;">Resilience Hub</a><br />
<a href="#section-managementandgovernance-incidentmanager" style="font-weight: 600;">Incident Manager</a>
</td>
</tr>
</table>
<table style="border: none; margin-bottom: 16px;">
<tr>
<td><img src="img/aws/Arch-Category_Media-Services_64.png" style="width: 44px; height: 44px; padding: 2px;" /></td>
<td style="padding-left: 12px;"><h4 style="vertical-align: middle; margin-top: 6px; margin-bottom: 6px;">Media Services</h4></td>
</tr>
<tr>
<td> </td>
<td style="padding-left: 12px;">
<a href="#section-mediaservices-elastictranscoder" style="font-weight: 600;">Elastic Transcoder</a><br />
<a href="#section-mediaservices-mediaconnect" style="font-weight: 600;">MediaConnect</a><br />
<a href="#section-mediaservices-mediaconvert" style="font-weight: 600;">MediaConvert</a><br />
<a href="#section-mediaservices-medialive" style="font-weight: 600;">MediaLive</a><br />
<a href="#section-mediaservices-mediapackage" style="font-weight: 600;">MediaPackage</a><br />
<a href="#section-mediaservices-mediastore" style="font-weight: 600;">MediaStore</a><br />
<a href="#section-mediaservices-interactivevideoservice" style="font-weight: 600;">Interactive Video Service</a><br />
<a href="#section-mediaservices-nimblestudio" style="font-weight: 600;">Nimble Studio</a>
</td>
</tr>
</table>
<table style="border: none; margin-bottom: 16px;">
<tr>
<td><img src="img/aws/Arch-Category_Machine-Learning_64.png" style="width: 44px; height: 44px; padding: 2px;" /></td>
<td style="padding-left: 12px;"><h4 style="vertical-align: middle; margin-top: 6px; margin-bottom: 6px;">Machine Learning</h4></td>
</tr>
<tr>
<td> </td>
<td style="padding-left: 12px;">
<a href="#section-machinelearning-sagemaker" style="font-weight: 600;">SageMaker</a><br />
<a href="#section-machinelearning-codeguru" style="font-weight: 600;">CodeGuru</a><br />
<a href="#section-machinelearning-devopsguru" style="font-weight: 600;">DevOps Guru</a><br />
<a href="#section-machinelearning-forecast" style="font-weight: 600;">Forecast</a><br />
<a href="#section-machinelearning-personalize" style="font-weight: 600;">Personalize</a><br />
<a href="#section-machinelearning-frauddetector" style="font-weight: 600;">Fraud Detector</a><br />
<a href="#section-machinelearning-kendra" style="font-weight: 600;">Kendra</a><br />
<a href="#section-machinelearning-lex" style="font-weight: 600;">Lex</a><br />
<a href="#section-machinelearning-rekognition" style="font-weight: 600;">Rekognition</a><br />
<a href="#section-machinelearning-panorama" style="font-weight: 600;">Panorama</a><br />
<a href="#section-machinelearning-healthlake" style="font-weight: 600;">HealthLake</a><br />
<a href="#section-machinelearning-lookoutforvision" style="font-weight: 600;">Lookout For Vision</a><br />
<a href="#section-machinelearning-lookoutforequipment" style="font-weight: 600;">Lookout For Equipment</a><br />
<a href="#section-machinelearning-lookoutformetrics" style="font-weight: 600;">Lookout For Metrics</a>
</td>
</tr>
</table>
<table style="border: none; margin-bottom: 16px;">
<tr>
<td><img src="img/aws/Arch-Category_Analytics_64@5x.png" style="width: 44px; height: 44px; padding: 2px;" /></td>
<td style="padding-left: 12px;"><h4 style="vertical-align: middle; margin-top: 6px; margin-bottom: 6px;">Analytics</h4></td>
</tr>
<tr>
<td> </td>
<td style="padding-left: 12px;">
<a href="#section-analytics-athena" style="font-weight: 600;">Athena</a><br />
<a href="#section-analytics-emr" style="font-weight: 600;">EMR</a><br />
<a href="#section-analytics-opensearch" style="font-weight: 600;">OpenSearch</a><br />
<a href="#section-analytics-kinesis" style="font-weight: 600;">Kinesis</a><br />
<a href="#section-analytics-quicksight" style="font-weight: 600;">QuickSight</a><br />
<a href="#section-analytics-datapipeline" style="font-weight: 600;">Data Pipeline</a><br />
<a href="#section-analytics-glue" style="font-weight: 600;">Glue</a><br />
<a href="#section-analytics-lakeformation" style="font-weight: 600;">Lake Formation</a><br />
<a href="#section-analytics-msk" style="font-weight: 600;">MSK</a><br />
<a href="#section-analytics-databrew" style="font-weight: 600;">DataBrew</a><br />
<a href="#section-analytics-finspace" style="font-weight: 600;">FinSpace</a>
</td>
</tr>
</table>
<table style="border: none; margin-bottom: 16px;">
<tr>
<td><img src="img/aws/Arch-Category_Security-Identity-Compliance_64.png" style="width: 44px; height: 44px; padding: 2px;" /></td>
<td style="padding-left: 12px;"><h4 style="vertical-align: middle; margin-top: 6px; margin-bottom: 6px;">Security, Identity, & Compliance</h4></td>
</tr>
<tr>
<td> </td>
<td style="padding-left: 12px;">
<a href="#section-securityidentityandcompliance-iam" style="font-weight: 600;">IAM</a><br />
<a href="#section-securityidentityandcompliance-resourceaccessmanager" style="font-weight: 600;">Resource Access Manager</a><br />
<a href="#section-securityidentityandcompliance-cognito" style="font-weight: 600;">Cognito</a><br />
<a href="#section-securityidentityandcompliance-secretsmanager" style="font-weight: 600;">Secrets Manager</a><br />
<a href="#section-securityidentityandcompliance-guardduty" style="font-weight: 600;">GuardDuty</a><br />
<a href="#section-securityidentityandcompliance-inspector" style="font-weight: 600;">Inspector</a><br />
<a href="#section-securityidentityandcompliance-macie" style="font-weight: 600;">Macie</a><br />
<a href="#section-securityidentityandcompliance-singlesignon" style="font-weight: 600;">Single Sign-On</a><br />
<a href="#section-securityidentityandcompliance-certificatemanager" style="font-weight: 600;">Certificate Manager</a><br />
<a href="#section-securityidentityandcompliance-kms" style="font-weight: 600;">KMS</a><br />
<a href="#section-securityidentityandcompliance-cloudhsm" style="font-weight: 600;">CloudHSM</a><br />
<a href="#section-securityidentityandcompliance-directoryservice" style="font-weight: 600;">Directory Service</a><br />
<a href="#section-securityidentityandcompliance-wafandshield" style="font-weight: 600;">WAF & Shield</a><br />
<a href="#section-securityidentityandcompliance-securityhub" style="font-weight: 600;">Security Hub</a><br />
<a href="#section-securityidentityandcompliance-detective" style="font-weight: 600;">Detective</a><br />
<a href="#section-securityidentityandcompliance-auditmanager" style="font-weight: 600;">Audit Manager</a><br />
<a href="#section-securityidentityandcompliance-signer" style="font-weight: 600;">Signer</a>
</td>
</tr>
</table>
</div>
<div class="col-md-4">
<table style="border: none; margin-bottom: 16px;">
<tr>
<td><img src="img/aws/Arch-Category_AWS-Cost-Management_64.png" style="width: 44px; height: 44px; padding: 2px;" /></td>
<td style="padding-left: 12px;"><h4 style="vertical-align: middle; margin-top: 6px; margin-bottom: 6px;">AWS Cost Management</h4></td>
</tr>
<tr>
<td> </td>
<td style="padding-left: 12px;">
<a href="#section-awscostmanagement-costexplorer" style="font-weight: 600;">Cost Explorer</a><br />
<a href="#section-awscostmanagement-budgets" style="font-weight: 600;">Budgets</a><br />
<a href="#section-awscostmanagement-billingconductor" style="font-weight: 600;">Billing Conductor</a>
</td>
</tr>
</table>
<table style="border: none; margin-bottom: 16px;">
<tr>
<td><img src="img/aws/Arch-Category_Front-End-Web-Mobile_64.png" style="width: 44px; height: 44px; padding: 2px;" /></td>
<td style="padding-left: 12px;"><h4 style="vertical-align: middle; margin-top: 6px; margin-bottom: 6px;">Front-end Web & Mobile</h4></td>
</tr>
<tr>
<td> </td>
<td style="padding-left: 12px;">
<a href="#section-mobile-amplify" style="font-weight: 600;">Amplify</a><br />
<a href="#section-mobile-appsync" style="font-weight: 600;">AppSync</a><br />
<a href="#section-mobile-devicefarm" style="font-weight: 600;">Device Farm</a><br />
<a href="#section-mobile-locationservice" style="font-weight: 600;">Location Service</a>
</td>
</tr>
</table>
<table style="border: none; margin-bottom: 16px;">
<tr>
<td><img src="img/aws/Arch-Category_Application-Integration_64.png" style="width: 44px; height: 44px; padding: 2px;" /></td>
<td style="padding-left: 12px;"><h4 style="vertical-align: middle; margin-top: 6px; margin-bottom: 6px;">Application Integration</h4></td>
</tr>
<tr>
<td> </td>
<td style="padding-left: 12px;">
<a href="#section-applicationintegration-stepfunctions" style="font-weight: 600;">Step Functions</a><br />
<a href="#section-applicationintegration-appflow" style="font-weight: 600;">AppFlow</a><br />
<a href="#section-applicationintegration-eventbridge" style="font-weight: 600;">EventBridge</a><br />
<a href="#section-applicationintegration-amazonmq" style="font-weight: 600;">Amazon MQ</a><br />
<a href="#section-applicationintegration-sns" style="font-weight: 600;">SNS</a><br />
<a href="#section-applicationintegration-sqs" style="font-weight: 600;">SQS</a><br />
<a href="#section-applicationintegration-swf" style="font-weight: 600;">SWF</a><br />