-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeck.json
More file actions
17049 lines (17049 loc) · 738 KB
/
deck.json
File metadata and controls
17049 lines (17049 loc) · 738 KB
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
{
"__type__": "Deck",
"children": [
{
"__type__": "Deck",
"children": [],
"crowdanki_uuid": "da0671e1-5788-11ee-a9ff-40b0343bd461",
"deck_config_uuid": "def7ea9c-6ac9-11e9-bc0e-f45c89a0e3a9",
"desc": "",
"dyn": 0,
"extendNew": 0,
"extendRev": 0,
"media_files": [
"Analytics.svg",
"Application Integration.svg",
"Blockchain.svg",
"Business Applications.svg",
"Cloud Financial Management.svg",
"Compute.svg",
"Contact Center.svg",
"Containers.svg",
"Customer Enablement.svg",
"Database.svg",
"Developer Tools.svg",
"End User Computing.svg",
"Front End Web Mobile.svg",
"Games.svg",
"Internet of Things.svg",
"Machine Learning.svg",
"Management Governance.svg",
"Media Services.svg",
"Migration Transfer.svg",
"Networking Content Delivery.svg",
"Quantum Technologies.svg",
"Robotics.svg",
"Satellite.svg",
"Security Identity Compliance.svg",
"Serverless.svg",
"Storage.svg"
],
"name": "01 category icons",
"newLimit": null,
"newLimitToday": null,
"notes": [
{
"__type__": "Note",
"fields": [
"Which AWS service category is this?<br/><br/><img src=\"Media Services.svg\"><br/></strong>",
"<strong>\nMedia Services</strong>"
],
"guid": "mcZ=26Qi.&",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service category is this?<br/><br/><img src=\"Robotics.svg\"><br/></strong>",
"<strong>\nRobotics</strong>"
],
"guid": "F=Qra%gzqx",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service category is this?<br/><br/><img src=\"Analytics.svg\"><br/></strong>",
"<strong>\nAnalytics</strong>"
],
"guid": "Fh3~`Hs_2(",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service category is this?<br/><br/><img src=\"Containers.svg\"><br/></strong>",
"<strong>\nContainers</strong>"
],
"guid": "k,#]3ZB2W&",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service category is this?<br/><br/><img src=\"Machine Learning.svg\"><br/></strong>",
"<strong>\nMachine Learning</strong>"
],
"guid": "q*_NQsVFM@",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service category is this?<br/><br/><img src=\"Application Integration.svg\"><br/></strong>",
"<strong>\nApplication Integration</strong>"
],
"guid": "n]S[opVvz]",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service category is this?<br/><br/><img src=\"Blockchain.svg\"><br/></strong>",
"<strong>\nBlockchain</strong>"
],
"guid": "yYra/iX/|W",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service category is this?<br/><br/><img src=\"Contact Center.svg\"><br/></strong>",
"<strong>\nContact Center</strong>"
],
"guid": "uHr`q(7#t]",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service category is this?<br/><br/><img src=\"Business Applications.svg\"><br/></strong>",
"<strong>\nBusiness Applications</strong>"
],
"guid": "d1B];vx6=;",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service category is this?<br/><br/><img src=\"Database.svg\"><br/></strong>",
"<strong>\nDatabase</strong>"
],
"guid": "xky-N|cJRV",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service category is this?<br/><br/><img src=\"Satellite.svg\"><br/></strong>",
"<strong>\nSatellite</strong>"
],
"guid": "Ib6K~~)`N!",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service category is this?<br/><br/><img src=\"Cloud Financial Management.svg\"><br/></strong>",
"<strong>\nCloud Financial Management</strong>"
],
"guid": "k4&,],q|Ue",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service category is this?<br><br><img src=\"Management Governance.svg\"><br>",
"<strong>\nManagement & Governance</strong>"
],
"guid": "vgh_IFCJd-",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service category is this?<br/><br/><img src=\"End User Computing.svg\"><br/></strong>",
"<strong>\nEnd User Computing</strong>"
],
"guid": "Ob#inP[~!-",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"cloud-computing",
"computing",
"information-technology",
"leech",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service category is this?<br/><br/><img src=\"Developer Tools.svg\"><br/></strong>",
"<strong>\nDeveloper Tools</strong>"
],
"guid": "dnG&QXgzny",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service category is this?<br/><br/><img src=\"Games.svg\"><br/></strong>",
"<strong>\nGames</strong>"
],
"guid": "j2ikgTd:=x",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service category is this?<br/><br/><img src=\"Migration Transfer.svg\"><br/></strong>",
"<strong>\nMigration & Transfer</strong>"
],
"guid": "I^:/GY_#fE",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service category is this?<br/><br/><img src=\"Internet of Things.svg\"><br/></strong>",
"<strong>\nInternet of Things</strong>"
],
"guid": "yH^=@kOMC@",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service category is this?<br/><br/><img src=\"Storage.svg\"><br/></strong>",
"<strong>\nStorage</strong>"
],
"guid": "Klgd9=XoU;",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service category is this?<br/><br/><img src=\"Compute.svg\"><br/></strong>",
"<strong>\nCompute</strong>"
],
"guid": "BFs:7,rDFF",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service category is this?<br/><br/><img src=\"Serverless.svg\"><br/></strong>",
"<strong>\nServerless</strong>"
],
"guid": "C^:TMs[.Qi",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service category is this?<br/><br/><img src=\"Quantum Technologies.svg\"><br/></strong>",
"<strong>\nQuantum Technologies</strong>"
],
"guid": "k<l9g$v$ud",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service category is this?<br/><br/><img src=\"Networking Content Delivery.svg\"><br/></strong>",
"<strong>\nNetworking & Content Delivery</strong>"
],
"guid": "[MW^3>WUg",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service category is this?<br/><br/><img src=\"Front End Web Mobile.svg\"><br/></strong>",
"<strong>\nFront End Web & Mobile</strong>"
],
"guid": "MdOgrb#M-j",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service category is this?<br/><br/><img src=\"Customer Enablement.svg\"><br/></strong>",
"<strong>\nCustomer Enablement</strong>"
],
"guid": "iQPBOEEe7o",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service category is this?<br/><br/><img src=\"Security Identity Compliance.svg\"><br/></strong>",
"<strong>\nSecurity Identity & Compliance</strong>"
],
"guid": "dLS*bD$kKc",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
}
],
"reviewLimit": null,
"reviewLimitToday": null
},
{
"__type__": "Deck",
"children": [],
"crowdanki_uuid": "da08d416-5788-11ee-b1db-40b0343bd461",
"deck_config_uuid": "05c33bf8-6ab7-11e9-97f9-f45c89a0e3a9",
"desc": "",
"dyn": 0,
"extendNew": 0,
"extendRev": 0,
"media_files": [
"AWS Activate.svg",
"AWS Amplify.svg",
"AWS App Mesh.svg",
"AWS App Runner.svg",
"AWS AppConfig.svg",
"AWS AppSync.svg",
"AWS Application Auto Scaling.svg",
"AWS Application Composer.svg",
"AWS Application Cost Profiler.svg",
"AWS Application Discovery Service.svg",
"AWS Application Migration Service.svg",
"AWS Artifact.svg",
"AWS Audit Manager.svg",
"AWS Auto Scaling.svg",
"AWS Backint Agent.svg",
"AWS Backup.svg",
"AWS Batch.svg",
"AWS Billing Conductor.svg",
"AWS Budgets.svg",
"AWS Certificate Manager.svg",
"AWS Chatbot.svg",
"AWS Clean Rooms.svg",
"AWS Client VPN.svg",
"AWS Cloud Control API.svg",
"AWS Cloud Development Kit.svg",
"AWS Cloud Map.svg",
"AWS Cloud WAN.svg",
"AWS Cloud9.svg",
"AWS CloudFormation.svg",
"AWS CloudHSM.svg",
"AWS CloudShell.svg",
"AWS CloudTrail.svg",
"AWS CodeArtifact.svg",
"AWS CodeBuild.svg",
"AWS CodeCommit.svg",
"AWS CodeDeploy.svg",
"AWS CodePipeline.svg",
"AWS CodeStar.svg",
"AWS Command Line Interface.svg",
"AWS Compute Optimizer.svg",
"AWS Config.svg",
"AWS Console Mobile Application.svg",
"AWS Control Tower.svg",
"AWS Cost Explorer.svg",
"AWS Cost and Usage Report.svg",
"AWS Data Exchange.svg",
"AWS Data Pipeline.svg",
"AWS DataSync.svg",
"AWS Database Migration Service.svg",
"AWS Deep Learning AMIs.svg",
"AWS Deep Learning Containers.svg",
"AWS DeepComposer.svg",
"AWS DeepLens.svg",
"AWS DeepRacer.svg",
"AWS Device Farm.svg",
"AWS Direct Connect.svg",
"AWS Directory Service.svg",
"AWS Distro for OpenTelemetry.svg",
"AWS Elastic Beanstalk.svg",
"AWS Elastic Disaster Recovery.svg",
"AWS Elemental Appliances & Software.svg",
"AWS Elemental Conductor.svg",
"AWS Elemental Delta.svg",
"AWS Elemental Link.svg",
"AWS Elemental Live.svg",
"AWS Elemental MediaConnect.svg",
"AWS Elemental MediaConvert.svg",
"AWS Elemental MediaLive.svg",
"AWS Elemental MediaPackage.svg",
"AWS Elemental MediaStore.svg",
"AWS Elemental MediaTailor.svg",
"AWS Elemental Server.svg",
"AWS Express Workflows.svg",
"AWS Fargate.svg",
"AWS Fault Injection Simulator.svg",
"AWS Firewall Manager.svg",
"AWS GameKit.svg",
"AWS Global Accelerator.svg",
"AWS Glue DataBrew.svg",
"AWS Glue Elastic Views.svg",
"AWS Glue.svg",
"AWS Ground Station.svg",
"AWS Health Dashboard.svg",
"AWS IAM Identity Center.svg",
"AWS IQ.svg",
"AWS Identity and Access Management.svg",
"AWS IoT 1 Click.svg",
"AWS IoT Analytics.svg",
"AWS IoT Button.svg",
"AWS IoT Core.svg",
"AWS IoT Device Defender.svg",
"AWS IoT Device Management.svg",
"AWS IoT EduKit.svg",
"AWS IoT Events.svg",
"AWS IoT ExpressLink.svg",
"AWS IoT FleetWise.svg",
"AWS IoT Greengrass.svg",
"AWS IoT RoboRunner.svg",
"AWS IoT SiteWise.svg",
"AWS IoT Things Graph.svg",
"AWS IoT TwinMaker.svg",
"AWS Key Management Service.svg",
"AWS Lake Formation.svg",
"AWS Lambda.svg",
"AWS Launch Wizard.svg",
"AWS License Manager.svg",
"AWS Local Zones.svg",
"AWS Mainframe Modernization.svg",
"AWS Managed Services.svg",
"AWS Management Console.svg",
"AWS Marketplace_Dark.svg",
"AWS Marketplace_Light.svg",
"AWS Migration Evaluator.svg",
"AWS Migration Hub.svg",
"AWS Network Firewall.svg",
"AWS Neuron.svg",
"AWS Nitro Enclaves.svg",
"AWS OpsWorks.svg",
"AWS Organizations.svg",
"AWS Outposts family.svg",
"AWS Outposts rack.svg",
"AWS Outposts servers.svg",
"AWS Panorama.svg",
"AWS Parallel Cluster.svg",
"AWS Private 5G.svg",
"AWS Private Certificate Authority.svg",
"AWS PrivateLink.svg",
"AWS Professional Services.svg",
"AWS Proton.svg",
"AWS Resilience Hub.svg",
"AWS Resource Access Manager.svg",
"AWS Resource Explorer.svg",
"AWS RoboMaker.svg",
"AWS Secrets Manager.svg",
"AWS Security Hub.svg",
"AWS Serverless Application Repository.svg",
"AWS Service Catalog.svg",
"AWS Service Management Connector.svg",
"AWS Shield.svg",
"AWS Signer.svg",
"AWS SimSpace Weaver.svg",
"AWS Site to Site VPN.svg",
"AWS Snowball Edge.svg",
"AWS Snowball.svg",
"AWS Snowcone.svg",
"AWS Snowmobile.svg",
"AWS Step Functions.svg",
"AWS Storage Gateway.svg",
"AWS Supply Chain.svg",
"AWS Support.svg",
"AWS Systems Manager.svg",
"AWS Telco Network Builder.svg",
"AWS Thinkbox Deadline.svg",
"AWS Thinkbox Frost.svg",
"AWS Thinkbox Krakatoa.svg",
"AWS Thinkbox Sequoia.svg",
"AWS Thinkbox Stoke.svg",
"AWS Thinkbox XMesh.svg",
"AWS Tools and SDKs.svg",
"AWS Training Certification.svg",
"AWS Transfer Family.svg",
"AWS Transit Gateway.svg",
"AWS Trusted Advisor.svg",
"AWS Verified Access.svg",
"AWS WAF.svg",
"AWS Wavelength.svg",
"AWS Well Architected Tool.svg",
"AWS Wickr.svg",
"AWS X Ray.svg",
"AWS rePost.svg",
"Alexa For Business.svg",
"Amazon API Gateway.svg",
"Amazon AppFlow.svg",
"Amazon AppStream.svg",
"Amazon Athena.svg",
"Amazon Augmented AI A2I.svg",
"Amazon Aurora.svg",
"Amazon Braket.svg",
"Amazon Chime SDK.svg",
"Amazon Chime.svg",
"Amazon Cloud Directory.svg",
"Amazon CloudFront.svg",
"Amazon CloudSearch.svg",
"Amazon CloudWatch.svg",
"Amazon CodeCatalyst.svg",
"Amazon CodeGuru.svg",
"Amazon CodeWhisperer.svg",
"Amazon Cognito.svg",
"Amazon Comprehend Medical.svg",
"Amazon Comprehend.svg",
"Amazon Connect.svg",
"Amazon Corretto.svg",
"Amazon DataZone.svg",
"Amazon Detective.svg",
"Amazon DevOps Guru.svg",
"Amazon DocumentDB.svg",
"Amazon DynamoDB.svg",
"Amazon EC2 Auto Scaling.svg",
"Amazon EC2 Image Builder.svg",
"Amazon EC2.svg",
"Amazon ECS Anywhere.svg",
"Amazon EFS.svg",
"Amazon EKS Anywhere.svg",
"Amazon EKS Cloud.svg",
"Amazon EKS Distro.svg",
"Amazon EMR.svg",
"Amazon ElastiCache.svg",
"Amazon Elastic Block Store.svg",
"Amazon Elastic Container Registry.svg",
"Amazon Elastic Container Service.svg",
"Amazon Elastic Inference.svg",
"Amazon Elastic Kubernetes Service.svg",
"Amazon Elastic Transcoder.svg",
"Amazon EventBridge.svg",
"Amazon FSx for Lustre.svg",
"Amazon FSx for NetApp ONTAP.svg",
"Amazon FSx for OpenZFS.svg",
"Amazon FSx for WFS.svg",
"Amazon FSx.svg",
"Amazon File Cache.svg",
"Amazon FinSpace.svg",
"Amazon Forecast.svg",
"Amazon Fraud Detector.svg",
"Amazon GameLift.svg",
"Amazon GameSparks.svg",
"Amazon Genomics CLI.svg",
"Amazon GuardDuty.svg",
"Amazon HealthLake.svg",
"Amazon Honeycode.svg",
"Amazon Inspector.svg",
"Amazon Interactive Video Service.svg",
"Amazon Kendra.svg",
"Amazon Keyspaces.svg",
"Amazon Kinesis Data Analytics.svg",
"Amazon Kinesis Data Firehose.svg",
"Amazon Kinesis Data Streams.svg",
"Amazon Kinesis Video Streams-16adfd2123acb4ab037c7b401238441690efba29.svg",
"Amazon Kinesis Video Streams.svg",
"Amazon Kinesis.svg",
"Amazon Lex.svg",
"Amazon Lightsail for Research.svg",
"Amazon Lightsail.svg",
"Amazon Location Service.svg",
"Amazon Lookout for Equipment.svg",
"Amazon Lookout for Metrics.svg",
"Amazon Lookout for Vision.svg",
"Amazon MQ.svg",
"Amazon Macie.svg",
"Amazon Managed Blockchain.svg",
"Amazon Managed Grafana.svg",
"Amazon Managed Service for Prometheus.svg",
"Amazon Managed Streaming for Apache Kafka.svg",
"Amazon Managed Workflows for Apache Airflow.svg",
"Amazon MemoryDB for Redis.svg",
"Amazon Monitron.svg",
"Amazon Neptune.svg",
"Amazon Nimble Studio.svg",
"Amazon Omics.svg",
"Amazon OpenSearch Service.svg",
"Amazon Personalize.svg",
"Amazon Pinpoint APIs.svg",
"Amazon Pinpoint.svg",
"Amazon Polly.svg",
"Amazon Quantum Ledger Database.svg",
"Amazon QuickSight.svg",
"Amazon RDS on VMware.svg",
"Amazon RDS.svg",
"Amazon Redshift.svg",
"Amazon Rekognition.svg",
"Amazon Route 53.svg",
"Amazon S3 on Outposts.svg",
"Amazon SageMaker Ground Truth.svg",
"Amazon SageMaker Studio Lab.svg",
"Amazon SageMaker.svg",
"Amazon Security Lake.svg",
"Amazon Simple Email Service.svg",
"Amazon Simple Notification Service.svg",
"Amazon Simple Queue Service.svg",
"Amazon Simple Storage Service Glacier.svg",
"Amazon Simple Storage Service.svg",
"Amazon Textract.svg",
"Amazon Timestream.svg",
"Amazon Transcribe.svg",
"Amazon Translate.svg",
"Amazon VPC Lattice.svg",
"Amazon Verified Permissions.svg",
"Amazon Virtual Private Cloud.svg",
"Amazon WorkDocs SDK.svg",
"Amazon WorkDocs.svg",
"Amazon WorkLink.svg",
"Amazon WorkMail.svg",
"Amazon WorkSpaces Family.svg",
"Apache MXNet on AWS.svg",
"Bottlerocket.svg",
"Elastic Fabric Adapter.svg",
"Elastic Load Balancing.svg",
"FreeRTOS.svg",
"NICE DCV.svg",
"NICE EnginFrame.svg",
"Open 3D Engine.svg",
"Red Hat OpenShift Service on AWS.svg",
"Reserved Instance Reporting.svg",
"Savings Plans.svg",
"TensorFlow on AWS.svg",
"TorchServe.svg",
"VMware Cloud on AWS.svg"
],
"name": "02 service icons",
"newLimit": null,
"newLimitToday": null,
"notes": [
{
"__type__": "Note",
"fields": [
"Which AWS service is this? <br><br><img src=\"AWS Data Exchange.svg\">\n",
"<strong>\nAWS Data Exchange</strong>"
],
"guid": "P[c_&$l|[|",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"AWS-Associate",
"AWS-Professional",
"AWS-services",
"AWS-Solutions-Architect",
"AWS-Solutions-Architect-Associate",
"AWS-Solutions-Architect-Professional",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service is this? <br/><br/><img src=\"AWS OpsWorks.svg\">\n</strong>",
"<strong>\nAWS OpsWorks</strong>"
],
"guid": "pE0ZmJU*h7",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"AWS-Associate",
"AWS-developer",
"AWS-DevOps-Engineer-Professional",
"AWS-Professional",
"AWS-services",
"AWS-SysOps-Administrator-Associate",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service is this? <br/><br/><img src=\"Amazon WorkLink.svg\">\n</strong>",
"<strong>\nAmazon WorkLink</strong>"
],
"guid": "wK3$+3/-L@",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"AWS-services",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service is this? <br/><br/><img src=\"AWS Key Management Service.svg\">\n</strong>",
"<strong>\nAWS Key Management Service</strong>"
],
"guid": "K,INS{@aj/",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"AWS-Associate",
"AWS-developer",
"AWS-Developer-Associate",
"AWS-DevOps-Engineer-Professional",
"AWS-Professional",
"AWS-services",
"AWS-Solutions-Architect",
"AWS-Solutions-Architect-Professional",
"AWS-Specialty",
"AWS-Specialty-Data-Analytics",
"AWS-Specialty-Databases",
"AWS-Specialty-SAP",
"AWS-Specialty-Security",
"AWS-SysOps-Administrator-Associate",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service is this? <br/><br/><img src=\"AWS DeepComposer.svg\">\n</strong>",
"<strong>\nAWS DeepComposer</strong>"
],
"guid": "P>so%dLy<e",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"AWS-services",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service is this? <br/><br/><img src=\"AWS Audit Manager.svg\">\n</strong>",
"<strong>\nAWS Audit Manager</strong>"
],
"guid": "d3)%+<trvx",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"AWS-Associate",
"AWS-Professional",
"AWS-services",
"AWS-Solutions-Architect",
"AWS-Solutions-Architect-Associate",
"AWS-Solutions-Architect-Professional",
"AWS-Specialty",
"AWS-Specialty-Security",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service is this? <br/><br/><img src=\"AWS Wickr.svg\">\n</strong>",
"<strong>\nAWS Wickr</strong>"
],
"guid": "eJAj+rv~,8",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"AWS-services",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [
"Which AWS service is this? <br/><br/><img src=\"AWS Security Hub.svg\">\n</strong>",
"<strong>\nAWS Security Hub</strong>"
],
"guid": "EHCLX8AA&S",
"note_model_uuid": "da06718d-5788-11ee-9ec6-40b0343bd461",
"tags": [
"aws",
"AWS-architecture",
"AWS-Associate",
"AWS-developer",
"AWS-DevOps-Engineer-Professional",
"AWS-Professional",
"AWS-services",
"AWS-Solutions-Architect",
"AWS-Solutions-Architect-Associate",
"AWS-Solutions-Architect-Professional",
"AWS-Specialty",
"AWS-Specialty-SAP",
"AWS-Specialty-Security",
"AWS-SysOps-Administrator-Associate",
"cloud-computing",
"computing",
"information-technology",
"technology"
]
},
{
"__type__": "Note",
"fields": [