-
Notifications
You must be signed in to change notification settings - Fork 7
/
all-actions.txt
18195 lines (18195 loc) · 548 KB
/
all-actions.txt
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
a2c:GetContainerizationJobDetails
a2c:GetDeploymentJobDetails
a2c:StartContainerizationJob
a2c:StartDeploymentJob
a4b:ApproveSkill
a4b:AssociateContactWithAddressBook
a4b:AssociateDeviceWithNetworkProfile
a4b:AssociateDeviceWithRoom
a4b:AssociateSkillGroupWithRoom
a4b:AssociateSkillWithSkillGroup
a4b:AssociateSkillWithUsers
a4b:CompleteRegistration
a4b:CreateAddressBook
a4b:CreateBusinessReportSchedule
a4b:CreateConferenceProvider
a4b:CreateContact
a4b:CreateGatewayGroup
a4b:CreateNetworkProfile
a4b:CreateProfile
a4b:CreateRoom
a4b:CreateSkillGroup
a4b:CreateUser
a4b:DeleteAddressBook
a4b:DeleteBusinessReportSchedule
a4b:DeleteConferenceProvider
a4b:DeleteContact
a4b:DeleteDevice
a4b:DeleteDeviceUsageData
a4b:DeleteGatewayGroup
a4b:DeleteNetworkProfile
a4b:DeleteProfile
a4b:DeleteRoom
a4b:DeleteRoomSkillParameter
a4b:DeleteSkillAuthorization
a4b:DeleteSkillGroup
a4b:DeleteUser
a4b:DisassociateContactFromAddressBook
a4b:DisassociateDeviceFromRoom
a4b:DisassociateSkillFromSkillGroup
a4b:DisassociateSkillFromUsers
a4b:DisassociateSkillGroupFromRoom
a4b:ForgetSmartHomeAppliances
a4b:GetAddressBook
a4b:GetConferencePreference
a4b:GetConferenceProvider
a4b:GetContact
a4b:GetDevice
a4b:GetGateway
a4b:GetGatewayGroup
a4b:GetInvitationConfiguration
a4b:GetNetworkProfile
a4b:GetProfile
a4b:GetRoom
a4b:GetRoomSkillParameter
a4b:GetSkillGroup
a4b:ListBusinessReportSchedules
a4b:ListConferenceProviders
a4b:ListDeviceEvents
a4b:ListGatewayGroups
a4b:ListGateways
a4b:ListSkills
a4b:ListSkillsStoreCategories
a4b:ListSkillsStoreSkillsByCategory
a4b:ListSmartHomeAppliances
a4b:ListTags
a4b:PutConferencePreference
a4b:PutDeviceSetupEvents
a4b:PutInvitationConfiguration
a4b:PutRoomSkillParameter
a4b:PutSkillAuthorization
a4b:RegisterAVSDevice
a4b:RegisterDevice
a4b:RejectSkill
a4b:ResolveRoom
a4b:RevokeInvitation
a4b:SearchAddressBooks
a4b:SearchContacts
a4b:SearchDevices
a4b:SearchNetworkProfiles
a4b:SearchProfiles
a4b:SearchRooms
a4b:SearchSkillGroups
a4b:SearchUsers
a4b:SendAnnouncement
a4b:SendInvitation
a4b:StartDeviceSync
a4b:StartSmartHomeApplianceDiscovery
a4b:TagResource
a4b:UntagResource
a4b:UpdateAddressBook
a4b:UpdateBusinessReportSchedule
a4b:UpdateConferenceProvider
a4b:UpdateContact
a4b:UpdateDevice
a4b:UpdateGateway
a4b:UpdateGatewayGroup
a4b:UpdateNetworkProfile
a4b:UpdateProfile
a4b:UpdateRoom
a4b:UpdateSkillGroup
access-analyzer:ApplyArchiveRule
access-analyzer:CancelPolicyGeneration
access-analyzer:CheckAccessNotGranted
access-analyzer:CheckNoNewAccess
access-analyzer:CheckNoPublicAccess
access-analyzer:CreateAccessPreview
access-analyzer:CreateAnalyzer
access-analyzer:CreateArchiveRule
access-analyzer:DeleteAnalyzer
access-analyzer:DeleteArchiveRule
access-analyzer:GenerateFindingRecommendation
access-analyzer:GetAccessPreview
access-analyzer:GetAnalyzedResource
access-analyzer:GetAnalyzer
access-analyzer:GetArchiveRule
access-analyzer:GetFinding
access-analyzer:GetFindingRecommendation
access-analyzer:GetFindingsStatistics
access-analyzer:GetGeneratedPolicy
access-analyzer:ListAccessPreviewFindings
access-analyzer:ListAccessPreviews
access-analyzer:ListAnalyzedResources
access-analyzer:ListAnalyzers
access-analyzer:ListArchiveRules
access-analyzer:ListFindings
access-analyzer:ListPolicyGenerations
access-analyzer:ListTagsForResource
access-analyzer:StartPolicyGeneration
access-analyzer:StartResourceScan
access-analyzer:TagResource
access-analyzer:UntagResource
access-analyzer:UpdateAnalyzer
access-analyzer:UpdateArchiveRule
access-analyzer:UpdateFindings
access-analyzer:ValidatePolicy
account:AcceptPrimaryEmailUpdate
account:CloseAccount
account:DeleteAlternateContact
account:DisableRegion
account:EnableRegion
account:GetAccountInformation
account:GetAlternateContact
account:GetChallengeQuestions
account:GetContactInformation
account:GetPrimaryEmail
account:GetRegionOptStatus
account:ListRegions
account:PutAlternateContact
account:PutChallengeQuestions
account:PutContactInformation
account:StartPrimaryEmailUpdate
acm-pca:CreateCertificateAuthority
acm-pca:CreateCertificateAuthorityAuditReport
acm-pca:CreatePermission
acm-pca:DeleteCertificateAuthority
acm-pca:DeletePermission
acm-pca:DeletePolicy
acm-pca:DescribeCertificateAuthority
acm-pca:DescribeCertificateAuthorityAuditReport
acm-pca:GetCertificate
acm-pca:GetCertificateAuthorityCertificate
acm-pca:GetCertificateAuthorityCsr
acm-pca:GetPolicy
acm-pca:ImportCertificateAuthorityCertificate
acm-pca:IssueCertificate
acm-pca:ListCertificateAuthorities
acm-pca:ListPermissions
acm-pca:ListTags
acm-pca:PutPolicy
acm-pca:RestoreCertificateAuthority
acm-pca:RevokeCertificate
acm-pca:TagCertificateAuthority
acm-pca:UntagCertificateAuthority
acm-pca:UpdateCertificateAuthority
acm:AddTagsToCertificate
acm:DeleteCertificate
acm:DescribeCertificate
acm:ExportCertificate
acm:GetAccountConfiguration
acm:GetCertificate
acm:ImportCertificate
acm:ListCertificates
acm:ListTagsForCertificate
acm:PutAccountConfiguration
acm:RemoveTagsFromCertificate
acm:RenewCertificate
acm:RequestCertificate
acm:ResendValidationEmail
acm:UpdateCertificateOptions
activate:CreateForm
activate:GetAccountContact
activate:GetContentInfo
activate:GetCosts
activate:GetCredits
activate:GetMemberInfo
activate:GetProgram
activate:PutMemberInfo
aiops:CreateInvestigation
aiops:CreateInvestigationEvent
aiops:CreateInvestigationGroup
aiops:CreateInvestigationResource
aiops:DeleteInvestigation
aiops:DeleteInvestigationGroup
aiops:DeleteInvestigationGroupPolicy
aiops:GetInvestigation
aiops:GetInvestigationEvent
aiops:GetInvestigationGroup
aiops:GetInvestigationGroupPolicy
aiops:GetInvestigationResource
aiops:ListInvestigationEvents
aiops:ListInvestigationGroups
aiops:ListInvestigations
aiops:ListTagsForResource
aiops:PutInvestigationGroupPolicy
aiops:TagResource
aiops:UntagResource
aiops:UpdateInvestigation
aiops:UpdateInvestigationEvent
aiops:UpdateInvestigationGroup
airflow:CreateCliToken
airflow:CreateEnvironment
airflow:CreateWebLoginToken
airflow:DeleteEnvironment
airflow:GetEnvironment
airflow:InvokeRestApi
airflow:ListEnvironments
airflow:ListTagsForResource
airflow:PublishMetrics
airflow:TagResource
airflow:UntagResource
airflow:UpdateEnvironment
amplify:CreateApp
amplify:CreateBackendEnvironment
amplify:CreateBranch
amplify:CreateDeployment
amplify:CreateDomainAssociation
amplify:CreateWebHook
amplify:DeleteApp
amplify:DeleteBackendEnvironment
amplify:DeleteBranch
amplify:DeleteDomainAssociation
amplify:DeleteJob
amplify:DeleteWebHook
amplify:GenerateAccessLogs
amplify:GetApp
amplify:GetArtifactUrl
amplify:GetBackendEnvironment
amplify:GetBranch
amplify:GetDomainAssociation
amplify:GetJob
amplify:GetWebHook
amplify:ListApps
amplify:ListArtifacts
amplify:ListBackendEnvironments
amplify:ListBranches
amplify:ListDomainAssociations
amplify:ListJobs
amplify:ListTagsForResource
amplify:ListWebHooks
amplify:StartDeployment
amplify:StartJob
amplify:StopJob
amplify:TagResource
amplify:UntagResource
amplify:UpdateApp
amplify:UpdateBranch
amplify:UpdateDomainAssociation
amplify:UpdateWebHook
amplifybackend:CloneBackend
amplifybackend:CreateBackend
amplifybackend:CreateBackendAPI
amplifybackend:CreateBackendAuth
amplifybackend:CreateBackendConfig
amplifybackend:CreateBackendStorage
amplifybackend:CreateToken
amplifybackend:DeleteBackend
amplifybackend:DeleteBackendAPI
amplifybackend:DeleteBackendAuth
amplifybackend:DeleteBackendStorage
amplifybackend:DeleteToken
amplifybackend:GenerateBackendAPIModels
amplifybackend:GetBackend
amplifybackend:GetBackendAPI
amplifybackend:GetBackendAPIModels
amplifybackend:GetBackendAuth
amplifybackend:GetBackendJob
amplifybackend:GetBackendStorage
amplifybackend:GetToken
amplifybackend:ImportBackendAuth
amplifybackend:ImportBackendStorage
amplifybackend:ListBackendJobs
amplifybackend:ListS3Buckets
amplifybackend:RemoveAllBackends
amplifybackend:RemoveBackendConfig
amplifybackend:UpdateBackendAPI
amplifybackend:UpdateBackendAuth
amplifybackend:UpdateBackendConfig
amplifybackend:UpdateBackendJob
amplifybackend:UpdateBackendStorage
amplifyuibuilder:CreateComponent
amplifyuibuilder:CreateForm
amplifyuibuilder:CreateTheme
amplifyuibuilder:DeleteComponent
amplifyuibuilder:DeleteForm
amplifyuibuilder:DeleteTheme
amplifyuibuilder:ExchangeCodeForToken
amplifyuibuilder:ExportComponents
amplifyuibuilder:ExportForms
amplifyuibuilder:ExportThemes
amplifyuibuilder:GetCodegenJob
amplifyuibuilder:GetComponent
amplifyuibuilder:GetForm
amplifyuibuilder:GetMetadata
amplifyuibuilder:GetTheme
amplifyuibuilder:ListCodegenJobs
amplifyuibuilder:ListComponents
amplifyuibuilder:ListForms
amplifyuibuilder:ListTagsForResource
amplifyuibuilder:ListThemes
amplifyuibuilder:PutMetadataFlag
amplifyuibuilder:RefreshToken
amplifyuibuilder:ResetMetadataFlag
amplifyuibuilder:StartCodegenJob
amplifyuibuilder:TagResource
amplifyuibuilder:UntagResource
amplifyuibuilder:UpdateComponent
amplifyuibuilder:UpdateForm
amplifyuibuilder:UpdateTheme
aoss:APIAccessAll
aoss:BatchGetCollection
aoss:BatchGetEffectiveLifecyclePolicy
aoss:BatchGetLifecyclePolicy
aoss:BatchGetVpcEndpoint
aoss:CreateAccessPolicy
aoss:CreateCollection
aoss:CreateLifecyclePolicy
aoss:CreateSecurityConfig
aoss:CreateSecurityPolicy
aoss:CreateVpcEndpoint
aoss:DashboardsAccessAll
aoss:DeleteAccessPolicy
aoss:DeleteCollection
aoss:DeleteLifecyclePolicy
aoss:DeleteSecurityConfig
aoss:DeleteSecurityPolicy
aoss:DeleteVpcEndpoint
aoss:GetAccessPolicy
aoss:GetAccountSettings
aoss:GetPoliciesStats
aoss:GetSecurityConfig
aoss:GetSecurityPolicy
aoss:ListAccessPolicies
aoss:ListCollections
aoss:ListLifecyclePolicies
aoss:ListSecurityConfigs
aoss:ListSecurityPolicies
aoss:ListTagsForResource
aoss:ListVpcEndpoints
aoss:TagResource
aoss:UntagResource
aoss:UpdateAccessPolicy
aoss:UpdateAccountSettings
aoss:UpdateCollection
aoss:UpdateLifecyclePolicy
aoss:UpdateSecurityConfig
aoss:UpdateSecurityPolicy
aoss:UpdateVpcEndpoint
apigateway:AddCertificateToDomain
apigateway:DELETE
apigateway:GET
apigateway:PATCH
apigateway:POST
apigateway:PUT
apigateway:RemoveCertificateFromDomain
apigateway:SetWebACL
apigateway:UpdateRestApiPolicy
app-integrations:CreateApplication
app-integrations:CreateApplicationAssociation
app-integrations:CreateDataIntegration
app-integrations:CreateDataIntegrationAssociation
app-integrations:CreateEventIntegration
app-integrations:CreateEventIntegrationAssociation
app-integrations:DeleteApplication
app-integrations:DeleteApplicationAssociation
app-integrations:DeleteDataIntegration
app-integrations:DeleteDataIntegrationAssociation
app-integrations:DeleteEventIntegration
app-integrations:DeleteEventIntegrationAssociation
app-integrations:GetApplication
app-integrations:GetDataIntegration
app-integrations:GetEventIntegration
app-integrations:ListApplicationAssociations
app-integrations:ListApplications
app-integrations:ListDataIntegrationAssociations
app-integrations:ListDataIntegrations
app-integrations:ListEventIntegrationAssociations
app-integrations:ListEventIntegrations
app-integrations:ListTagsForResource
app-integrations:TagResource
app-integrations:UntagResource
app-integrations:UpdateApplication
app-integrations:UpdateDataIntegration
app-integrations:UpdateDataIntegrationAssociation
app-integrations:UpdateEventIntegration
appconfig:CreateApplication
appconfig:CreateConfigurationProfile
appconfig:CreateDeploymentStrategy
appconfig:CreateEnvironment
appconfig:CreateExtension
appconfig:CreateExtensionAssociation
appconfig:CreateHostedConfigurationVersion
appconfig:DeleteApplication
appconfig:DeleteConfigurationProfile
appconfig:DeleteDeploymentStrategy
appconfig:DeleteEnvironment
appconfig:DeleteExtension
appconfig:DeleteExtensionAssociation
appconfig:DeleteHostedConfigurationVersion
appconfig:GetAccountSettings
appconfig:GetApplication
appconfig:GetConfiguration
appconfig:GetConfigurationProfile
appconfig:GetDeployment
appconfig:GetDeploymentStrategy
appconfig:GetEnvironment
appconfig:GetExtension
appconfig:GetExtensionAssociation
appconfig:GetHostedConfigurationVersion
appconfig:GetLatestConfiguration
appconfig:ListApplications
appconfig:ListConfigurationProfiles
appconfig:ListDeploymentStrategies
appconfig:ListDeployments
appconfig:ListEnvironments
appconfig:ListExtensionAssociations
appconfig:ListExtensions
appconfig:ListHostedConfigurationVersions
appconfig:ListTagsForResource
appconfig:StartConfigurationSession
appconfig:StartDeployment
appconfig:StopDeployment
appconfig:TagResource
appconfig:UntagResource
appconfig:UpdateAccountSettings
appconfig:UpdateApplication
appconfig:UpdateConfigurationProfile
appconfig:UpdateDeploymentStrategy
appconfig:UpdateEnvironment
appconfig:UpdateExtension
appconfig:UpdateExtensionAssociation
appconfig:ValidateConfiguration
appfabric:BatchGetUserAccessTasks
appfabric:ConnectAppAuthorization
appfabric:CreateAppAuthorization
appfabric:CreateAppBundle
appfabric:CreateIngestion
appfabric:CreateIngestionDestination
appfabric:DeleteAppAuthorization
appfabric:DeleteAppBundle
appfabric:DeleteIngestion
appfabric:DeleteIngestionDestination
appfabric:GetAppAuthorization
appfabric:GetAppBundle
appfabric:GetIngestion
appfabric:GetIngestionDestination
appfabric:ListAppAuthorizations
appfabric:ListAppBundles
appfabric:ListIngestionDestinations
appfabric:ListIngestions
appfabric:ListTagsForResource
appfabric:StartIngestion
appfabric:StartUserAccessTasks
appfabric:StopIngestion
appfabric:TagResource
appfabric:UntagResource
appfabric:UpdateAppAuthorization
appfabric:UpdateIngestionDestination
appflow:CancelFlowExecutions
appflow:CreateConnectorProfile
appflow:CreateFlow
appflow:DeleteConnectorProfile
appflow:DeleteFlow
appflow:DescribeConnector
appflow:DescribeConnectorEntity
appflow:DescribeConnectorFields
appflow:DescribeConnectorProfiles
appflow:DescribeConnectors
appflow:DescribeFlow
appflow:DescribeFlowExecution
appflow:DescribeFlowExecutionRecords
appflow:DescribeFlows
appflow:ListConnectorEntities
appflow:ListConnectorFields
appflow:ListConnectors
appflow:ListFlows
appflow:ListTagsForResource
appflow:RegisterConnector
appflow:ResetConnectorMetadataCache
appflow:RunFlow
appflow:StartFlow
appflow:StopFlow
appflow:TagResource
appflow:UnRegisterConnector
appflow:UntagResource
appflow:UpdateConnectorProfile
appflow:UpdateConnectorRegistration
appflow:UpdateFlow
appflow:UseConnectorProfile
application-autoscaling:DeleteScalingPolicy
application-autoscaling:DeleteScheduledAction
application-autoscaling:DeregisterScalableTarget
application-autoscaling:DescribeScalableTargets
application-autoscaling:DescribeScalingActivities
application-autoscaling:DescribeScalingPolicies
application-autoscaling:DescribeScheduledActions
application-autoscaling:GetPredictiveScalingForecast
application-autoscaling:ListTagsForResource
application-autoscaling:PutScalingPolicy
application-autoscaling:PutScheduledAction
application-autoscaling:RegisterScalableTarget
application-autoscaling:TagResource
application-autoscaling:UntagResource
application-cost-profiler:DeleteReportDefinition
application-cost-profiler:GetReportDefinition
application-cost-profiler:ImportApplicationUsage
application-cost-profiler:ListReportDefinitions
application-cost-profiler:PutReportDefinition
application-cost-profiler:UpdateReportDefinition
application-signals:BatchGetServiceLevelObjectiveBudgetReport
application-signals:CreateServiceLevelObjective
application-signals:DeleteServiceLevelObjective
application-signals:GetService
application-signals:GetServiceLevelObjective
application-signals:ListObservedEntities
application-signals:ListServiceDependencies
application-signals:ListServiceDependents
application-signals:ListServiceLevelObjectives
application-signals:ListServiceOperations
application-signals:ListServices
application-signals:ListTagsForResource
application-signals:StartDiscovery
application-signals:TagResource
application-signals:UntagResource
application-signals:UpdateServiceLevelObjective
application-transformation:GetContainerization
application-transformation:GetDeployment
application-transformation:GetGroupingAssessment
application-transformation:GetPortingCompatibilityAssessment
application-transformation:GetPortingRecommendationAssessment
application-transformation:GetRuntimeAssessment
application-transformation:PutLogData
application-transformation:PutMetricData
application-transformation:StartContainerization
application-transformation:StartDeployment
application-transformation:StartGroupingAssessment
application-transformation:StartPortingCompatibilityAssessment
application-transformation:StartPortingRecommendationAssessment
application-transformation:StartRuntimeAssessment
applicationinsights:AddWorkload
applicationinsights:CreateApplication
applicationinsights:CreateComponent
applicationinsights:CreateLogPattern
applicationinsights:DeleteApplication
applicationinsights:DeleteComponent
applicationinsights:DeleteLogPattern
applicationinsights:DescribeApplication
applicationinsights:DescribeComponent
applicationinsights:DescribeComponentConfiguration
applicationinsights:DescribeComponentConfigurationRecommendation
applicationinsights:DescribeLogPattern
applicationinsights:DescribeObservation
applicationinsights:DescribeProblem
applicationinsights:DescribeProblemObservations
applicationinsights:DescribeWorkload
applicationinsights:Link
applicationinsights:ListApplications
applicationinsights:ListComponents
applicationinsights:ListConfigurationHistory
applicationinsights:ListLogPatternSets
applicationinsights:ListLogPatterns
applicationinsights:ListProblems
applicationinsights:ListTagsForResource
applicationinsights:ListWorkloads
applicationinsights:RemoveWorkload
applicationinsights:TagResource
applicationinsights:UntagResource
applicationinsights:UpdateApplication
applicationinsights:UpdateComponent
applicationinsights:UpdateComponentConfiguration
applicationinsights:UpdateLogPattern
applicationinsights:UpdateProblem
applicationinsights:UpdateWorkload
appmesh-preview:CreateGatewayRoute
appmesh-preview:CreateMesh
appmesh-preview:CreateRoute
appmesh-preview:CreateVirtualGateway
appmesh-preview:CreateVirtualNode
appmesh-preview:CreateVirtualRouter
appmesh-preview:CreateVirtualService
appmesh-preview:DeleteGatewayRoute
appmesh-preview:DeleteMesh
appmesh-preview:DeleteMeshPolicy
appmesh-preview:DeleteRoute
appmesh-preview:DeleteVirtualGateway
appmesh-preview:DeleteVirtualNode
appmesh-preview:DeleteVirtualRouter
appmesh-preview:DeleteVirtualService
appmesh-preview:DescribeGatewayRoute
appmesh-preview:DescribeMesh
appmesh-preview:DescribeRoute
appmesh-preview:DescribeVirtualGateway
appmesh-preview:DescribeVirtualNode
appmesh-preview:DescribeVirtualRouter
appmesh-preview:DescribeVirtualService
appmesh-preview:GetMeshPolicy
appmesh-preview:ListGatewayRoutes
appmesh-preview:ListMeshes
appmesh-preview:ListRoutes
appmesh-preview:ListVirtualGateways
appmesh-preview:ListVirtualNodes
appmesh-preview:ListVirtualRouters
appmesh-preview:ListVirtualServices
appmesh-preview:PutMeshPolicy
appmesh-preview:StreamAggregatedResources
appmesh-preview:UpdateGatewayRoute
appmesh-preview:UpdateMesh
appmesh-preview:UpdateRoute
appmesh-preview:UpdateVirtualGateway
appmesh-preview:UpdateVirtualNode
appmesh-preview:UpdateVirtualRouter
appmesh-preview:UpdateVirtualService
appmesh:CreateGatewayRoute
appmesh:CreateMesh
appmesh:CreateRoute
appmesh:CreateVirtualGateway
appmesh:CreateVirtualNode
appmesh:CreateVirtualRouter
appmesh:CreateVirtualService
appmesh:DeleteGatewayRoute
appmesh:DeleteMesh
appmesh:DeleteMeshPolicy
appmesh:DeleteRoute
appmesh:DeleteVirtualGateway
appmesh:DeleteVirtualNode
appmesh:DeleteVirtualRouter
appmesh:DeleteVirtualService
appmesh:DescribeGatewayRoute
appmesh:DescribeMesh
appmesh:DescribeRoute
appmesh:DescribeVirtualGateway
appmesh:DescribeVirtualNode
appmesh:DescribeVirtualRouter
appmesh:DescribeVirtualService
appmesh:GetMeshPolicy
appmesh:ListGatewayRoutes
appmesh:ListMeshes
appmesh:ListRoutes
appmesh:ListTagsForResource
appmesh:ListVirtualGateways
appmesh:ListVirtualNodes
appmesh:ListVirtualRouters
appmesh:ListVirtualServices
appmesh:PutMeshPolicy
appmesh:StreamAggregatedResources
appmesh:TagResource
appmesh:UntagResource
appmesh:UpdateGatewayRoute
appmesh:UpdateMesh
appmesh:UpdateRoute
appmesh:UpdateVirtualGateway
appmesh:UpdateVirtualNode
appmesh:UpdateVirtualRouter
appmesh:UpdateVirtualService
apprunner:AssociateCustomDomain
apprunner:AssociateWebAcl
apprunner:CreateAutoScalingConfiguration
apprunner:CreateConnection
apprunner:CreateObservabilityConfiguration
apprunner:CreateService
apprunner:CreateVpcConnector
apprunner:CreateVpcIngressConnection
apprunner:DeleteAutoScalingConfiguration
apprunner:DeleteConnection
apprunner:DeleteObservabilityConfiguration
apprunner:DeleteService
apprunner:DeleteVpcConnector
apprunner:DeleteVpcIngressConnection
apprunner:DescribeAutoScalingConfiguration
apprunner:DescribeCustomDomains
apprunner:DescribeObservabilityConfiguration
apprunner:DescribeOperation
apprunner:DescribeService
apprunner:DescribeVpcConnector
apprunner:DescribeVpcIngressConnection
apprunner:DescribeWebAclForService
apprunner:DisassociateCustomDomain
apprunner:DisassociateWebAcl
apprunner:ListAssociatedServicesForWebAcl
apprunner:ListAutoScalingConfigurations
apprunner:ListConnections
apprunner:ListObservabilityConfigurations
apprunner:ListOperations
apprunner:ListServices
apprunner:ListServicesForAutoScalingConfiguration
apprunner:ListTagsForResource
apprunner:ListVpcConnectors
apprunner:ListVpcIngressConnections
apprunner:PauseService
apprunner:ResumeService
apprunner:StartDeployment
apprunner:TagResource
apprunner:UntagResource
apprunner:UpdateDefaultAutoScalingConfiguration
apprunner:UpdateService
apprunner:UpdateVpcIngressConnection
appstream:AssociateAppBlockBuilderAppBlock
appstream:AssociateApplicationFleet
appstream:AssociateApplicationToEntitlement
appstream:AssociateFleet
appstream:BatchAssociateUserStack
appstream:BatchDisassociateUserStack
appstream:CopyImage
appstream:CreateAppBlock
appstream:CreateAppBlockBuilder
appstream:CreateAppBlockBuilderStreamingURL
appstream:CreateApplication
appstream:CreateDirectoryConfig
appstream:CreateEntitlement
appstream:CreateFleet
appstream:CreateImageBuilder
appstream:CreateImageBuilderStreamingURL
appstream:CreateStack
appstream:CreateStreamingURL
appstream:CreateThemeForStack
appstream:CreateUpdatedImage
appstream:CreateUsageReportSubscription
appstream:CreateUser
appstream:DeleteAppBlock
appstream:DeleteAppBlockBuilder
appstream:DeleteApplication
appstream:DeleteDirectoryConfig
appstream:DeleteEntitlement
appstream:DeleteFleet
appstream:DeleteImage
appstream:DeleteImageBuilder
appstream:DeleteImagePermissions
appstream:DeleteStack
appstream:DeleteThemeForStack
appstream:DeleteUsageReportSubscription
appstream:DeleteUser
appstream:DescribeAppBlockBuilderAppBlockAssociations
appstream:DescribeAppBlockBuilders
appstream:DescribeAppBlocks
appstream:DescribeApplicationFleetAssociations
appstream:DescribeApplications
appstream:DescribeDirectoryConfigs
appstream:DescribeEntitlements
appstream:DescribeFleets
appstream:DescribeImageBuilders
appstream:DescribeImagePermissions
appstream:DescribeImages
appstream:DescribeSessions
appstream:DescribeStacks
appstream:DescribeThemeForStack
appstream:DescribeUsageReportSubscriptions
appstream:DescribeUserStackAssociations
appstream:DescribeUsers
appstream:DisableUser
appstream:DisassociateAppBlockBuilderAppBlock
appstream:DisassociateApplicationFleet
appstream:DisassociateApplicationFromEntitlement
appstream:DisassociateFleet
appstream:EnableUser
appstream:ExpireSession
appstream:ListAssociatedFleets
appstream:ListAssociatedStacks
appstream:ListEntitledApplications
appstream:ListTagsForResource
appstream:StartAppBlockBuilder
appstream:StartFleet
appstream:StartImageBuilder
appstream:StopAppBlockBuilder
appstream:StopFleet
appstream:StopImageBuilder
appstream:Stream
appstream:TagResource
appstream:UntagResource
appstream:UpdateAppBlockBuilder
appstream:UpdateApplication
appstream:UpdateDirectoryConfig
appstream:UpdateEntitlement
appstream:UpdateFleet
appstream:UpdateImagePermissions
appstream:UpdateStack
appstream:UpdateThemeForStack
appstudio:GetAccountStatus
appstudio:GetEnablementJobStatus
appstudio:StartEnablementJob
appstudio:StartRollbackEnablementJob
appstudio:StartTeamDeployment
appsync:AssociateApi
appsync:AssociateMergedGraphqlApi
appsync:AssociateSourceGraphqlApi
appsync:CreateApi
appsync:CreateApiCache
appsync:CreateApiKey
appsync:CreateChannelNamespace
appsync:CreateDataSource
appsync:CreateDomainName
appsync:CreateFunction
appsync:CreateGraphqlApi
appsync:CreateResolver
appsync:CreateType
appsync:DeleteApi
appsync:DeleteApiCache
appsync:DeleteApiKey
appsync:DeleteChannelNamespace
appsync:DeleteDataSource
appsync:DeleteDomainName
appsync:DeleteFunction
appsync:DeleteGraphqlApi
appsync:DeleteResolver
appsync:DeleteResourcePolicy
appsync:DeleteType
appsync:DisassociateApi
appsync:DisassociateMergedGraphqlApi
appsync:DisassociateSourceGraphqlApi
appsync:EvaluateCode
appsync:EvaluateMappingTemplate
appsync:EventConnect
appsync:EventPublish
appsync:EventSubscribe
appsync:FlushApiCache
appsync:GetApi
appsync:GetApiAssociation
appsync:GetApiCache
appsync:GetChannelNamespace
appsync:GetDataSource
appsync:GetDataSourceIntrospection
appsync:GetDomainName
appsync:GetFunction
appsync:GetGraphqlApi
appsync:GetGraphqlApiEnvironmentVariables
appsync:GetIntrospectionSchema
appsync:GetResolver
appsync:GetResourcePolicy
appsync:GetSchemaCreationStatus
appsync:GetSourceApiAssociation
appsync:GetType
appsync:GraphQL
appsync:ListApiKeys
appsync:ListApis
appsync:ListChannelNamespaces
appsync:ListDataSources
appsync:ListDomainNames
appsync:ListFunctions
appsync:ListGraphqlApis
appsync:ListResolvers
appsync:ListResolversByFunction
appsync:ListSourceApiAssociations
appsync:ListTagsForResource
appsync:ListTypes
appsync:ListTypesByAssociation
appsync:PutGraphqlApiEnvironmentVariables
appsync:PutResourcePolicy
appsync:SetWebACL
appsync:SourceGraphQL
appsync:StartDataSourceIntrospection
appsync:StartSchemaCreation
appsync:StartSchemaMerge
appsync:TagResource
appsync:UntagResource
appsync:UpdateApi
appsync:UpdateApiCache
appsync:UpdateApiKey
appsync:UpdateChannelNamespace
appsync:UpdateDataSource
appsync:UpdateDomainName
appsync:UpdateFunction
appsync:UpdateGraphqlApi
appsync:UpdateResolver
appsync:UpdateSourceApiAssociation
appsync:UpdateType
apptest:CreateTestCase
apptest:CreateTestConfiguration
apptest:CreateTestSuite
apptest:DeleteTestCase
apptest:DeleteTestConfiguration
apptest:DeleteTestRun
apptest:DeleteTestSuite
apptest:GetTestCase
apptest:GetTestConfiguration
apptest:GetTestRunStep
apptest:GetTestSuite
apptest:ListTagsForResource
apptest:ListTestCases
apptest:ListTestConfigurations
apptest:ListTestRunSteps
apptest:ListTestRunTestCases
apptest:ListTestRuns
apptest:ListTestSuites
apptest:StartTestRun
apptest:TagResource
apptest:UntagResource
apptest:UpdateTestCase
apptest:UpdateTestConfiguration
apptest:UpdateTestSuite
aps:CreateAlertManagerAlerts
aps:CreateAlertManagerDefinition
aps:CreateLoggingConfiguration
aps:CreateRuleGroupsNamespace
aps:CreateScraper
aps:CreateWorkspace
aps:DeleteAlertManagerDefinition
aps:DeleteAlertManagerSilence
aps:DeleteLoggingConfiguration
aps:DeleteRuleGroupsNamespace
aps:DeleteScraper
aps:DeleteWorkspace
aps:DescribeAlertManagerDefinition
aps:DescribeLoggingConfiguration
aps:DescribeRuleGroupsNamespace
aps:DescribeScraper
aps:DescribeWorkspace
aps:GetAlertManagerSilence
aps:GetAlertManagerStatus
aps:GetDefaultScraperConfiguration
aps:GetLabels
aps:GetMetricMetadata
aps:GetSeries
aps:ListAlertManagerAlertGroups
aps:ListAlertManagerAlerts
aps:ListAlertManagerReceivers
aps:ListAlertManagerSilences
aps:ListAlerts
aps:ListRuleGroupsNamespaces
aps:ListRules
aps:ListScrapers
aps:ListTagsForResource
aps:ListWorkspaces
aps:PutAlertManagerDefinition
aps:PutAlertManagerSilences
aps:PutRuleGroupsNamespace
aps:QueryMetrics
aps:RemoteWrite
aps:TagResource
aps:UntagResource
aps:UpdateLoggingConfiguration
aps:UpdateScraper
aps:UpdateWorkspaceAlias
arc-zonal-shift:CancelZonalShift
arc-zonal-shift:CreatePracticeRunConfiguration
arc-zonal-shift:DeletePracticeRunConfiguration
arc-zonal-shift:GetAutoshiftObserverNotificationStatus
arc-zonal-shift:GetManagedResource
arc-zonal-shift:ListAutoshifts
arc-zonal-shift:ListManagedResources
arc-zonal-shift:ListZonalShifts
arc-zonal-shift:StartZonalShift
arc-zonal-shift:UpdateAutoshiftObserverNotificationStatus
arc-zonal-shift:UpdatePracticeRunConfiguration
arc-zonal-shift:UpdateZonalAutoshiftConfiguration
arc-zonal-shift:UpdateZonalShift
arsenal:RegisterOnPremisesAgent
artifact:AcceptAgreement
artifact:AcceptNdaForAgreement
artifact:DownloadAgreement
artifact:Get
artifact:GetAccountSettings
artifact:GetAgreement
artifact:GetCustomerAgreement
artifact:GetNdaForAgreement
artifact:GetReport
artifact:GetReportMetadata
artifact:GetTermForReport
artifact:ListAgreements
artifact:ListCustomerAgreements
artifact:ListReports
artifact:PutAccountSettings
artifact:TerminateAgreement
athena:BatchGetNamedQuery
athena:BatchGetPreparedStatement
athena:BatchGetQueryExecution
athena:CancelCapacityReservation
athena:CancelQueryExecution
athena:CreateCapacityReservation
athena:CreateDataCatalog
athena:CreateNamedQuery
athena:CreateNotebook
athena:CreatePreparedStatement
athena:CreatePresignedNotebookUrl
athena:CreateWorkGroup
athena:DeleteCapacityReservation
athena:DeleteDataCatalog
athena:DeleteNamedQuery
athena:DeleteNotebook
athena:DeletePreparedStatement
athena:DeleteWorkGroup
athena:ExportNotebook
athena:GetCalculationExecution