-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
console-services.yml
2716 lines (2556 loc) · 76.2 KB
/
console-services.yml
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
---
- id: alexa
name: Alexa for Business
description: Empower your organization with voice
url: "/a4b/home#"
- id: amplify
name: Amplify
description: Develop & deploy cloud-powered mobile and web apps
url: "/amplify/home#/home"
- id: apigateway
name: API Gateway
description: Build, Deploy and Manage APIs
url: /apigateway/main/apis#
sub_services:
- id: apis
name: APIs
url: /apigateway/main/apis#
- id: customdomainnames
name: Custom domain names
url: /apigateway/main/publish/domain-names#
- id: vpclinks
name: VPC links
url: /apigateway/main/vpc-links/list#
- id: appstream
name: AppStream 2.0
description: Stream desktop applications securely to any web browser
url: "/appstream2/home#"
- id: appsync
name: AppSync
description: Real-Time Data Sync Using GraphQL for Mobile & Web Apps, Online or Offline
url: "/appsync/home#/"
- id: apprunner
name: App Runner
description: Deploy containerized web applications and APIs at scale
url: /apprunner/home#
sub_services:
- id: services
name: Services
url: /apprunner/home#/services
- id: connections
name: Connected accounts
url: /apprunner/home#/connections
- id: networkconfiguration
name: Network configuration
url: /apprunner/home#/networkconfiguration
- id: autoscalingconfiguration
name: Auto scaling configuration
url: /apprunner/home#/autoscalingconfiguration
- id: artifact
name: Artifact
description: AWS Compliance Reports and Agreements
has_global_region: true
url: /artifact/home
sub_services:
- id: agreements
name: Agreements
url: /artifact/agreements/accounts
- id: reports
name: Reports
url: /artifact/reports
- id: athena
name: Athena
description: Query Data in S3 using SQL
url: "/athena/home#"
- id: autoscaling
name: Auto Scaling
description: AWS Auto Scaling enables you to quickly scale your entire application on AWS
url: "/awsautoscaling/home#dashboard"
- id: backup
name: Backup
description: centrally manage and automate backups across AWS services
url: "/backup/home#/dashboard"
sub_services:
- id: dashboard
name: Dashboard
url: "/backup/home#/dashboard"
- id: backupvaults
name: Backup vaults
url: "/backup/home#/backupvaults"
- id: backupplans
name: Backup plans
url: "/backup/home#/backupplan"
- id: protectedresources
name: Protected resources
url: "/backup/home#/resources"
- id: jobs
name: Jobs
url: "/backup/home#/jobs/backup"
- id: settings
name: Settings
url: "/backup/home#/settings"
- id: crossaccountmonitoring
name: Cross-account monitoring
url: "/backup/home#/organization/monitoring/backup"
- id: backuppolicies
name: Backup policies
url: "/backup/home#/organization/policies"
- id: batch
name: Batch
description: Run Batch Jobs at Any Scale
url: "/batch/home#"
sub_services:
- id: dashboard
name: Dashboard
url: /batch/home#dashboard
- id: jobs
name: Jobs
url: /batch/home#jobs
- id: jobdefinitions
name: Job definitions
url: /batch/home#job-definition
- id: jobqueues
name: Job queues
url: /batch/home#queues
- id: computeenvironments
name: Compute environments
url: /batch/home#compute-environments
- id: wizard
name: Wizard
url: /batch/home#wizard
- id: blockchain
name: Blockchain
description: Easily create and manage scalable blockchain networks
url: "/managedblockchain/home#"
sub_services:
- id: networks
name: Networks
url: /managedblockchain/home#networks
- id: invitations
name: Invitations
url: /managedblockchain/home#invitations
- id: billing
name: Billing
description: Access, analyze, and control your AWS costs and usage
has_global_region: true
url: /billing/home
sub_services:
- id: dashboard
name: Dashboard
url: "/billing/home#/"
- id: bills
name: Bills
url: "/billing/home#/bills"
- id: payments
name: Payments
url: "/billing/home#/paymentsoverview"
- id: credits
name: Credits
url: "/billing/home#/credits"
- id: purchaseorders
name: Purchase orders
url: "/billing/home#/purchaseorders"
- id: reports
name: Cost & Usage Reports
url: "/billing/home#/reports"
- id: costcategories
name: Cost Categories
url: "/billing/home#/costcategories"
- id: tags
name: Cost allocation tags
url: "/billing/home#/tags"
- id: costexplorer
name: Cost Explorer
url: "/billing/home#/costexplorer"
- id: budgets
name: Budgets
url: "/billing/home#/budgets"
- id: budgetsreports
name: Budgets Reports
url: "/billing/home#/budgets/reports"
- id: savingsplans
name: Savings Plans
url: "/cost-reports/home#/savings-plans/overview"
- id: preferences
name: Billing preferences
url: "/billing/home#/preferences"
- id: paymentmethods
name: Payment methods
url: "/billing/home#/paymentmethods"
- id: consolidatedbilling
name: Consolidated billing
url: "/organizations/home"
- id: taxsettings
name: Tax settings
url: "/billing/home#/tax"
- id: acm
name: Certificate Manager
short_name: ACM
description: Provision, Manage, and Deploy SSL/TLS Certificates
url: "/acm/home#/"
sub_services:
- id: certificatemanager
name: Certificate manager
url: "/acm/home#/"
- id: privatecas
name: Private certificate authorities
url: "/acm-pca/home#/"
- id: chime
name: Chime
description: Amazon Chime is a communications service that transforms online meetings
url: https://console.chime.aws.amazon.com
has_global_region: true
- id: cloud9
name: Cloud9
description: A Cloud IDE for Writing, Running, and Debugging Code
url: "/cloud9/home#"
- id: cloudformation
name: CloudFormation
description: Create and Manage Resources with Templates
url: "/cloudformation/home#/stacks"
sub_services:
- id: stacks
name: Stacks
url: "/cloudformation/home#/stacks"
- id: stacksets
name: StackSets
url: "/cloudformation/home#/stacksets"
- id: designer
name: Designer
url: "/cloudformation/designer/home"
- id: cloudfront
name: CloudFront
description: Global Content Delivery Network
has_global_region: true
url: '/cloudfront/home#'
sub_services:
- id: distributions
name: Distributions
url: "/cloudfront/home#"
- id: policies
name: Policies
url: "/cloudfront/v2/home#/policies"
- id: cachestatistics
name: Cache statistics
url: "/cloudfront/home#cache_stat_reports:"
- id: monitoring
name: Monitoring
url: "/cloudfront/v2/home#/monitoring"
- id: alarms
name: Alarms
url: "/cloudfront/home#alarms:"
- id: popularobjects
name: Popular objects
url: "/cloudfront/home#popular_urls:"
- id: referrers
name: Top referrers
url: "/cloudfront/home#referers_report:"
- id: usage
name: Usage
url: "/cloudfront/home#usage_reports:"
- id: viewers
name: Viewers
url: "/cloudfront/home#viewers_reports:"
- id: oai
name: Origin access identity
url: "/cloudfront/home#oai:"
- id: publickey
name: Public key
url: "/cloudfront/home#publickey:"
- id: fle
name: Field-level encryption
url: "/cloudfront/home#fle:"
- id: cloudhsm
name: CloudHSM
description: Managed Hardware Security Modules in the Cloud
url: /cloudhsm/home#/clusters
sub_services:
- id: clusters
name: Clusters
url: /cloudhsm/home#/clusters
- id: backups
name: Backups
url: /cloudhsm/home#/backups
- id: cloudmap
name: Cloud Map
description: Build a dynamic map of your cloud
url: /cloudmap/home#namespaces
sub_services:
- id: namespaces
name: Namespaces
url: /cloudmap/home#namespaces
- id: cloudsearch
name: CloudSearch
description: Managed Search Service
url: "/cloudsearch/home#"
- id: cloudshell
name: CloudShell
description: Browser-based shell
url: /cloudshell#
- id: cloudtrail
name: CloudTrail
description: Track User Activity and API Usage
url: /cloudtrail/home#/dashboard
sub_services:
- id: dashboard
name: Dashboard
url: /cloudtrail/home#/dashboard
- id: eventhistory
name: Event history
url: /cloudtrail/home#/events
- id: insights
name: Insights
url: /cloudtrail/home#/insights
- id: trails
name: Trails
url: /cloudtrail/home#/trails
- id: cloudwatch
name: CloudWatch
description: Monitor Resources and Applications
url: "/cloudwatch/home#"
sub_services:
- id: home
name: Home
url: "/cloudwatch/home#"
- id: dashboards
name: Dashboards
url: "/cloudwatch/home#dashboards:"
- id: alarms
name: Alarms
url: "/cloudwatch/home#alarmsV2:"
- id: loggroups
name: Log groups
url: "/cloudwatch/home#logsV2:log-groups"
- id: loginsights
name: Log insights
url: "/cloudwatch/home#logsV2:logs-insights"
- id: metrics
name: Metrics
url: "/cloudwatch/home#metricsV2:graph=~()"
- id: servicelensmap
name: ServiceLens – Service Map
url: "/cloudwatch/home#servicelens:map"
- id: servicelenstracing
name: ServiceLens – Tracing
url: "/cloudwatch/home#servicelens:traces"
- id: containerinsightsresources
name: Container Insights – Resources
url: "/cloudwatch/home#container-insights:infrastructure"
- id: containerinsightsperformance
name: Container Insights – Performance
url: "/cloudwatch/home#container-insights:performance"
- id: syntheticscanaries
name: Synthetics – Canaries
url: "/cloudwatch/home#synthetics:canary/list"
- id: contributorinsights
name: Contributor Insights
url: "/cloudwatch/home#contributorinsights:"
- id: settings
name: Settings
url: "/cloudwatch/home#settings:"
- id: dashboards
name: Dashboards
url: "/cloudwatch/home#dashboards:"
- id: codeartifact
name: CodeArtifact
description: Secure, scalable, and cost-effective artifact management
url: /codesuite/codeartifact/domains#
sub_services:
- id: domains
name: Domains
url: /codesuite/codeartifact/domains#
- id: repositories
name: Repositories
url: /codesuite/codeartifact/repositories#
- id: codebuild
name: CodeBuild
description: Build and Test Code
url: /codesuite/codebuild/projects#
sub_services:
- id: projects
name: Build projects
url: /codesuite/codebuild/projects#
- id: buildhistory
name: Build history
url: /codesuite/codebuild/builds/build-history#
- id: reportgroups
name: Report groups
url: /codesuite/codebuild/testReports/reportGroups#
- id: reporthistory
name: Report history
url: /codesuite/codebuild/testReports/reports#
- id: accountmetrics
name: Account metrics
url: /codesuite/codebuild/metrics#
- id: codecommit
name: CodeCommit
description: Store Code in Private Git Repositories
url: /codesuite/codecommit/repositories#
sub_services:
- id: repositories
name: Repositories
url: /codesuite/codecommit/repositories#
- id: approvalruletemplates
name: Approval rule templates
url: /codesuite/codecommit/approval-rule-templates#
- id: codedeploy
name: CodeDeploy
description: Automate Code Deployments
url: /codesuite/codedeploy/deployments#
sub_services:
- id: deployments
name: Deployments
url: /codesuite/codedeploy/deployments#
- id: applications
name: Applications
url: /codesuite/codedeploy/applications#
- id: deploymentconfigurations
name: Deployment configurations
url: /codesuite/codedeploy/deployment-configs#
- id: onpremisesinstances
name: On-premises instances
url: /codesuite/codedeploy/on-premises-instances#
- id: codepipeline
name: CodePipeline
description: Release Software using Continuous Delivery
url: /codesuite/codepipeline/pipelines#
sub_services:
- id: pipelines
name: Pipelines
url: /codesuite/codepipeline/pipelines#
- id: developertools
name: Developer Tools
url: /codesuite/settings/notifications#
description: Host code, build, test, and deploy your applications to AWS
extra_search_terms:
- codesuite
sub_services:
- id: notifications
name: Notifications
url: /codesuite/settings/notifications#
- id: connections
name: Connections
url: /codesuite/settings/connections#
- id: codestar
name: Codestar
description: Develop, build and deploy applications
url: "/codesuite/codestar/projects#"
sub_services:
- id: projects
name: Projects
url: "/codesuite/codestar/projects#"
- id: cognito
name: Cognito
description: User Identity and App Data Synchronization
url: "/cognito/home#"
- id: comprehend
name: Comprehend
description: Analyze Unstructured Text
url: /comprehend/home#home
sub_services:
- id: realtimeanalysis
name: Real-time analysis
url: /comprehend/home#home
- id: analysisjobs
name: Analysis jobs
url: /comprehend/home#analysis
- id: customclassification
name: Custom classification
url: /comprehend/home#classification
- id: customentityrecognition
name: Custom entity recognition
url: /comprehend/home#entity-recognition
- id: medicalrealtimeanalysis
name: Real-time analysis
url: /comprehend/home#try-comprehend-medical
- id: medicalanalysisjobs
name: Analysis jobs
url: /comprehend/home#medical-analysis
- id: config
name: Config
description: Track Resource Inventory and Changes
url: "/config/home#"
- id: connect
name: Connect
description: managed contact center that enables engagement at any scale
url: "/connect/home#"
- id: controltower
name: Control Tower
description: set up and govern your multi-account AWS environment
url: "/controltower/home#"
- id: costmanagement
name: Cost Management
description: Visualize and Explore Your AWS Costs and Usage
url: /cost-management/home#/dashboard
has_global_region: true
sub_services:
- id: dashboard
name: Dashboard
url: /cost-management/home#/dashboard
- id: costexplorer
name: Cost Explorer
url: /cost-management/home#/custom
- id: reports
name: Reports
url: /cost-management/home#/reports/overview
- id: budgets
name: Budgets
url: /billing/home#/budgets
- id: costanomalydetection
name: Cost Anomaly Detection
url: /cost-management/home#/anomaly-detection
- id: rightsizingrecommendations
name: Rightsizing recommendations
url: /cost-management/home#/rightsizing
- id: savingsplans
name: Savings plans
url: /cost-management/home#/savings-plans/overview
- id: inventory
name: Inventory
url: /cost-management/home#/savings-plans/inventory
- id: savingsplansrecommendations
name: Savings Plans Recommendations
url: /cost-management/home#/savings-plans/recommendations
- id: purchasesavingsplans
name: Purchase Savings Plans
url: /cost-management/home#/savings-plans/purchase
- id: savingsplansutilizationreport
name: Savings Plans Utilization report
url: /cost-management/home#/savings-plans/utilization
- id: savingsplanscoveragereport
name: Savings Plans Coverage report
url: /cost-management/home#/savings-plans/coverage
- id: savingsplanscart
name: Savings Plans Cart
url: /cost-management/home#/savings-plans/cart
- id: reservations
name: Reservations
url: /cost-management/home#/ri/dashboard
- id: reservationsrecommendations
name: Reversations Recommendations
url: /cost-management/home#/recommendations
- id: reservationsutilizationreport
name: Reversations Utilization report
url: /cost-management/home#/ri/utilization
- id: reservationscoveragereport
name: Reversations Coverage report
url: /cost-management/home#/ri/coverage
- id: preferences
name: Preferences
url: /cost-management/home#/settings
- id: datapipeline
name: Data Pipeline
description: Orchestration for Data-Driven Workflows
url: "/datapipeline/home#"
- id: datasync
name: DataSync
description: DataSync simplifies, automates, and accelerates moving data
url: /datasync/home#/tasks
sub_services:
- id: tasks
name: Tasks
url: /datasync/home#/tasks
- id: history
name: History
url: /datasync/home#/history
- id: locations
name: Locations
url: /datasync/home#/locations
- id: agents
name: Agents
url: /datasync/home#/agents
- id: deeplens
name: DeepLens
description: Deep Learning Enabled Video Camera
url: /deeplens/home#projects
sub_services:
- id: projects
name: Projects
url: /deeplens/home#projects
- id: devices
name: Devices
url: /deeplens/home#devices
- id: models
name: Models
url: /deeplens/home#models
- id: recipes
name: Recipes
url: /deeplens/home#recipes
- id: devicefarm
name: Device Farm
description: Test Android, iOS, and Web Apps on Real Devices in the Cloud
has_global_region: true
url: /devicefarm/home#/mobile/projects
sub_services:
- id: mobileprojects
name: Mobile Projects
url: /devicefarm/home#/mobile/projects
- id: mobiledeviceslots
name: Mobile device slots
url: /devicefarm/home#/mobile/deviceslots
- id: mobileprivatedevices
name: Mobile private devices
url: /devicefarm/home#/mobile/privatedevices
- id: browserprojects
name: Browser projects
url: /devicefarm/home#/browser/projects
- id: directconnect
name: Direct Connect
description: Dedicated Network Connection to AWS
url: /directconnect/v2/home#/connections
has_global_region: true
sub_services:
- id: connections
name: Connections
url: /directconnect/v2/home#/connections
- id: virtualinterfaces
name: Virtual interfaces
url: /directconnect/v2/home#/virtual-interfaces
- id: lags
name: LAGs
url: /directconnect/v2/home#/lags
- id: directconnectgateways
name: Direct Connect gateways
url: /directconnect/v2/home#/dxgateways
- id: virtualprivategateways
name: Virtual private gateways
url: /directconnect/v2/home#/virtual-gateways
- id: transitgateways
name: Transit gateways
url: /directconnect/v2/home#/transit-gateways
- id: directoryservice
name: Directory Service
description: Host and Manage Active Directory
url: /directoryservicev2/identity#!/directories
sub_services:
- id: activedirectories
name: Active Directories
url: /directoryservicev2/identity#!/directories
- id: directoriessharedwithme
name: Active Directories shared with me
url: /directoryservicev2/home#!/directories-shared-with-me
- id: clouddirectories
name: Cloud Directories
url: /directoryservicev2/home#!/cloud-directories
- id: cloudschemas
name: Cloud Schemas
url: /directoryservicev2/home#!/cloud-schemas
- id: dms
name: Database Migation Service
short_name: DMS
description: Managed Database Migration Service
url: /dms/v2/home#dashboard
sub_services:
- id: dashboard
name: Dashboard
url: /dms/v2/home#dashboard
- id: databasemigrationtasks
name: Database migration tasks
url: /dms/v2/home#tasks
- id: replicationinstances
name: Replication instances
url: /dms/v2/home#replicationInstances
- id: endpoints
name: Endpoints
url: /dms/v2/home#endpointList
- id: certificates
name: Certificates
url: /dms/v2/home#certificate
- id: subnetgroups
name: Subnet groups
url: /dms/v2/home#subnetGroup
- id: events
name: Events
url: /dms/v2/home#EventList
- id: eventsubscriptions
name: Event subscriptions
url: /dms/v2/home#EventSubscriptionList
- id: notifications
name: Notifications
url: /dms/v2/home#Notifications
- id: documentdb
name: DocumentDB
description: Fully-managed MongoDB-compatible database service
url: /docdb/home#dashboard
sub_services:
- id: dashboard
name: Dashboard
url: /docdb/home#dashboard
- id: clusters
name: Clusters
url: /docdb/home#clusters
- id: snapshots
name: Snapshots
url: /docdb/home#snapshots
- id: subnetgroups
name: Subnet groups
url: /docdb/home#subnetGroups
- id: parametergroups
name: Parameter groups
url: /docdb/home#parameterGroups
- id: eventsubscriptions
name: Event Subscriptions
url: /docdb/home#eventSubscriptions
- id: events
name: Events
url: /docdb/home#events
- id: what'snew
name: What's New
url: /docdb/home#whats-new
- id: tutorials
name: Tutorials
url: /docdb/home#tutorials-page
- id: dynamodb
name: DynamoDB
description: Managed NoSQL Database
url: "/dynamodbv2/home#dashboard"
sub_services:
- id: dashboard
name: Dashboard
url: "/dynamodbv2/home#dashboard"
- id: tables
name: Tables
url: "/dynamodbv2/home#tables"
- id: items
name: Items
url: "/dynamodbv2/home#item-explorer"
- id: partiqleditor
name: PartiQL editor
url: "/dynamodbv2/home#partiql-editor"
- id: backups
name: Backups
url: "/dynamodbv2/home#list-backups"
- id: exportstos3
name: Exports to S3
url: "/dynamodbv2/home#exports"
- id: reservedcapacity
name: Reserved capacity
url: "/dynamodbv2/home#reserved-capacity"
- id: daxclusters
name: DAX Clusters
url: "/dynamodbv2/home#dax-clusters"
- id: daxsubnetgroups
name: DAX Subnet groups
url: "/dynamodbv2/home#dax-subnet-groups-list"
- id: daxparametergroups
name: DAX Parameter groups
url: "/dynamodbv2/home#dax-parameter-groups-list"
- id: daxevents
name: DAX Events
url: "/dynamodbv2/home#dax-events"
- id: ec2
name: Elastic Cloud Compute
short_name: EC2
description: Virtual Servers in the Cloud
url: "/ec2/home#Home:"
sub_services:
- id: dashboard
name: Dashboard
url: "/ec2/home#Home:"
- id: events
name: Events
url: "/ec2/home#Events:"
- id: tags
name: Tags
url: "/ec2/home#Tags:"
- id: limits
name: Limits
url: "/ec2/home#Limits:"
- id: instances
name: Instances
url: "/ec2/v2/home#Instances:"
- id: instancetypes
name: Instance Types
url: "/ec2/v2/home#InstanceTypes:"
- id: launchtemplates
name: Launch Templates
url: "/ec2/home#LaunchTemplates:"
- id: spotrequests
name: Spot Requests
url: "/ec2sp"
- id: savingsplans
name: Savings Plans
url: "/ec2/home#SavingsPlans:"
- id: reservedinstances
name: Reserved Instances
url: "/ec2/home#ReservedInstances:"
- id: dedicatedhosts
name: Dedicated Hosts
url: "/ec2/home#Hosts:"
- id: scheduledinstances
name: Scheduled Instances
url: "/ec2sp/v2/si/home"
- id: capacityreservations
name: Capacity Reservations
url: "/ec2sp/v2/home/#/cr/reservations"
- id: amis
name: AMIs
url: "/ec2/home#Images:"
- id: volumes
name: Volume
url: "/ec2/home#Volumes:"
- id: snapshots
name: Snapshots
url: "/ec2/home#Snapshots:"
- id: lifecyclemanager
name: Lifecycle Manager
url: "/ec2/home#Lifecycle:"
- id: securitygroups
name: Security Groups
url: "/ec2/v2/home#SecurityGroups:"
- id: elasticips
name: Elastic IPs
url: "/ec2/home#Addresses:"
- id: placementgroups
name: Placement Groups
url: "/ec2/home#PlacementGroups:"
- id: keypairs
name: Key Pairs
url: "/ec2/home#KeyPairs:"
- id: networkinterfaces
name: Network Interfaces
url: "/ec2/home#NIC:"
- id: loadbalancers
name: Load Balancers
url: "/ec2/home#LoadBalancers:"
- id: targetgroups
name: Target Groups
url: "/ec2/home#TargetGroups:"
- id: launchconfigs
name: Launch Configurations
url: "/ec2autoscaling/home#/lc"
- id: autoscalinggroups
name: Auto Scaling Groups
url: "/ec2autoscaling/home#/details"
- id: ecr
name: Elastic Container Registry
short_name: ECR
description: Fully-managed Docker container registry
url: "/ecr/private-registry/repositories#"
sub_services:
- id: privaterepositories
name: Private repositories
url: "/ecr/private-registry/repositories"
- id: privatesettings
name: Private registry
url: "/ecr/private-registry"
- id: publicrepositories
name: Public repositories
url: "/ecr/public-registry/repositories"
- id: publicsettings
name: Public registry
url: "/ecr/public-registry"
- id: publicgallery
name: Public gallery
url: https://gallery.ecr.aws/
- id: ecs
name: Elastic Container Service
short_name: ECS
description: Run and Manage Docker Containers
url: "/ecs/home#/clusters"
sub_services:
- id: clusters
name: Clusters
url: "/ecs/v2/clusters"
- id: namespaces
name: Namespaces
url: "/ecs/v2/namespaces"
- id: taskdefinitions
name: Task Definitions
url: "/ecs/v2/task-definitions"
- id: settings
name: Account settings
url: "/ecs/v2/account-settings"
- id: efs
name: Elastic File Storage
short_name: EFS
description: Managed File Storage for EC2
url: "/efs/home#/file-systems"
sub_services:
- id: filesystems
name: File systems
url: "/efs/home#/file-systems"
- id: accesspoints
name: Access points
url: "/efs/home#/access-points"
- id: settings
name: Settings
url: "/efs/home#/settings"
- id: eks
name: Elastic Kubernetes Service
short_name: EKS
description: Managed Kubernetes on AWS
url: /eks/home#/clusters
sub_services:
- id: clusters
name: Clusters
url: "/eks/home#/clusters"
- id: elasticache
name: ElastiCache
description: In-Memory Cache
url: "/elasticache/home#"
sub_services:
- id: dashboard
name: Dashboard
url: "/elasticache/home#"
- id: memcached
name: Memcached
url: "/elasticache/home#memcached:"
- id: redis
name: Redis
url: "/elasticache/home#redis:"
- id: globalcluster
name: Global Datastore
url: "/elasticache/home#global-cluster:"
- id: serviceupdates
name: Service Updates
url: "/elasticache/home#service-updates:"
- id: reservedcachenodes
name: Reserved Cache Nodes
url: "/elasticache/home#reserved-cache-nodes:"
- id: snapshots
name: Backups
url: "/elasticache/home#snapshots:"
- id: parametergroups
name: Parameter Groups
url: "/elasticache/home#param-groups:"
- id: users
name: User Management
url: "/elasticache/home#users:"
- id: usergroups
name: User Group Management
url: "/elasticache/home#user-groups:"
- id: subnetgroups
name: Subnet Groups
url: "/elasticache/home#cache-subnet-groups:"
- id: events
name: Events
url: "/elasticache/home#events:"
- id: clientdownload
name: ElastiCache Cluster Client
url: "/elasticache/home#client-download:"
- id: elasticbeanstalk
name: Elastic Beanstalk
description: Run and Manage Web Apps
url: "/elasticbeanstalk/home#/environments"
sub_services:
- id: environments
name: Environments
url: "/elasticbeanstalk/home#/environments"
- id: applications
name: Applications
url: "/elasticbeanstalk/home#/applications"
- id: changehistory
name: Change history
url: "/elasticbeanstalk/home/changeHistory"