-
Notifications
You must be signed in to change notification settings - Fork 7
/
annotated.json
3918 lines (3918 loc) · 133 KB
/
annotated.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"appsync:ListApiKeys": {
"access_level": "List",
"description": "Grants permission to list the API keys for a given API",
"service_name": "AWS AppSync",
"risk_category": [
"CredentialExposure"
]
},
"athena:GetSession": {
"access_level": "Read",
"description": "Grants permission to get a session",
"service_name": "Amazon Athena",
"risk_category": [
"CredentialExposure"
]
},
"chatbot:GetMicrosoftTeamsOauthParameters": {
"access_level": "Read",
"description": "Grants permission to generate OAuth parameters to request Microsoft Teams OAuth code to be used by the AWS Chatbot service",
"service_name": "AWS Chatbot",
"risk_category": [
"CredentialExposure"
]
},
"chatbot:GetSlackOauthParameters": {
"access_level": "Read",
"description": "Grants permission to generate OAuth parameters to request Slack OAuth code to be used by the AWS Chatbot service",
"service_name": "AWS Chatbot",
"risk_category": [
"CredentialExposure"
]
},
"chime:CreateApiKey": {
"access_level": "Write",
"description": "Grants permission to create a new SCIM access key for your Amazon Chime account and Okta configuration",
"service_name": "Amazon Chime",
"risk_category": [
"CredentialExposure"
]
},
"cloud9:CreateEnvironmentSSH": {
"access_level": "Write",
"description": "Grants permission to create an AWS Cloud9 SSH development environment",
"service_name": "AWS Cloud9",
"risk_category": [
"CredentialExposure"
]
},
"cloud9:CreateEnvironmentToken": {
"access_level": "Read",
"description": "Grants permission to create an authentication token that allows a connection between the AWS Cloud9 IDE and the user's environment",
"service_name": "AWS Cloud9",
"risk_category": [
"CredentialExposure"
]
},
"codeartifact:GetAuthorizationToken": {
"access_level": "Read",
"description": "Grants permission to generate a temporary authentication token for accessing repositories in a domain",
"service_name": "AWS CodeArtifact",
"risk_category": [
"CredentialExposure"
]
},
"codepipeline:PollForJobs": {
"access_level": "Write",
"description": "Grants permission to view information about any jobs for CodePipeline to act on",
"service_name": "AWS CodePipeline",
"risk_category": [
"CredentialExposure"
]
},
"cognito-identity:GetCredentialsForIdentity": {
"access_level": "Read",
"description": "Grants permission to return credentials for the provided identity ID",
"service_name": "Amazon Cognito Identity",
"risk_category": [
"CredentialExposure"
]
},
"cognito-identity:GetOpenIdToken": {
"access_level": "Read",
"description": "Grants permission to get an OpenID token, using a known Cognito ID",
"service_name": "Amazon Cognito Identity",
"risk_category": [
"CredentialExposure"
]
},
"cognito-identity:GetOpenIdTokenForDeveloperIdentity": {
"access_level": "Read",
"description": "Grants permission to register (or retrieve) a Cognito IdentityId and an OpenID Connect token for a user authenticated by your backend authentication process",
"service_name": "Amazon Cognito Identity",
"risk_category": [
"CredentialExposure"
]
},
"cognito-idp:DescribeUserPoolClient": {
"access_level": "Read",
"description": "Grants permission to describe any user pool app client",
"service_name": "Amazon Cognito User Pools",
"risk_category": [
"CredentialExposure"
]
},
"cognito-idp:GetUserAttributeVerificationCode": {
"access_level": "Read",
"description": "Grants permission to get the user attribute verification code for the specified attribute name",
"service_name": "Amazon Cognito User Pools",
"risk_category": [
"CredentialExposure"
]
},
"connect:GetFederationToken": {
"access_level": "Read",
"description": "Grants permission to federate into an Amazon Connect instance when using SAML-based authentication for identity management",
"service_name": "Amazon Connect",
"risk_category": [
"CredentialExposure"
]
},
"connect:ListSecurityKeys": {
"access_level": "List",
"description": "Grants permission to view the security keys of an existing Amazon Connect instance",
"service_name": "Amazon Connect",
"risk_category": [
"CredentialExposure"
]
},
"ec2:GetPasswordData": {
"access_level": "Read",
"description": "Grants permission to retrieve the encrypted administrator password for a running Windows instance",
"service_name": "Amazon EC2",
"risk_category": [
"CredentialExposure"
]
},
"ec2-instance-connect:SendSSHPublicKey": {
"access_level": "Write",
"description": "Grants permission to push an SSH public key to the specified EC2 instance to be used for standard SSH",
"service_name": "Amazon EC2 Instance Connect",
"risk_category": [
"CredentialExposure",
"PrivEsc"
]
},
"ecr-public:GetAuthorizationToken": {
"access_level": "Read",
"description": "Grants permission to retrieve a token that is valid for a specified registry for 12 hours",
"service_name": "Amazon Elastic Container Registry Public",
"risk_category": [
"CredentialExposure"
]
},
"ecr:GetAuthorizationToken": {
"access_level": "Read",
"description": "Grants permission to retrieve a token that is valid for a specified registry for 12 hours",
"service_name": "Amazon Elastic Container Registry",
"risk_category": [
"CredentialExposure"
]
},
"gamelift:GetComputeAuthToken": {
"access_level": "Read",
"description": "Grants permission to retrieve an authorization token for a compute and fleet to use in game server processes",
"service_name": "Amazon GameLift",
"risk_category": [
"CredentialExposure"
]
},
"gamelift:GetGameSessionLogUrl": {
"access_level": "Read",
"description": "Grants permission to retrieve the location of stored logs for a game session",
"service_name": "Amazon GameLift",
"risk_category": [
"CredentialExposure"
]
},
"gamelift:GetInstanceAccess": {
"access_level": "Read",
"description": "Grants permission to request remote access to a specified fleet instance",
"service_name": "Amazon GameLift",
"risk_category": [
"CredentialExposure",
"DataAccess"
]
},
"gamelift:RequestUploadCredentials": {
"access_level": "Read",
"description": "Grants permission to retrieve fresh upload credentials to use when uploading a new game build",
"service_name": "Amazon GameLift",
"risk_category": [
"CredentialExposure"
]
},
"iam:CreateAccessKey": {
"access_level": "Write",
"description": "Grants permission to create access key and secret access key for the specified IAM user",
"service_name": "AWS Identity and Access Management (IAM)",
"risk_category": [
"CredentialExposure",
"PrivEsc",
"ResourceExposure"
]
},
"iam:CreateLoginProfile": {
"access_level": "Write",
"description": "Grants permission to create a password for the specified IAM user",
"service_name": "AWS Identity and Access Management (IAM)",
"risk_category": [
"CredentialExposure",
"PrivEsc",
"ResourceExposure"
]
},
"iam:CreateServiceSpecificCredential": {
"access_level": "Write",
"description": "Grants permission to create a new service-specific credential for an IAM user",
"service_name": "AWS Identity and Access Management (IAM)",
"risk_category": [
"CredentialExposure",
"ResourceExposure"
]
},
"iam:ResetServiceSpecificCredential": {
"access_level": "Write",
"description": "Grants permission to reset the password for an existing service-specific credential for an IAM user",
"service_name": "AWS Identity and Access Management (IAM)",
"risk_category": [
"CredentialExposure",
"ResourceExposure"
]
},
"iam:UpdateAccessKey": {
"access_level": "Write",
"description": "Grants permission to update the status of the specified access key as Active or Inactive",
"service_name": "AWS Identity and Access Management (IAM)",
"risk_category": [
"CredentialExposure",
"ResourceExposure"
]
},
"lightsail:DownloadDefaultKeyPair": {
"access_level": "Write",
"description": "Grants permission to download the default key pair used to authenticate and connect to instances in a specific AWS Region",
"service_name": "Amazon Lightsail",
"risk_category": [
"CredentialExposure"
]
},
"lightsail:GetBucketAccessKeys": {
"access_level": "Read",
"description": "Grants permission to get the existing access key IDs for the specified Amazon Lightsail bucket",
"service_name": "Amazon Lightsail",
"risk_category": [
"CredentialExposure"
]
},
"lightsail:GetKeyPair": {
"access_level": "Read",
"description": "Grants permission to get information about a key pair",
"service_name": "Amazon Lightsail",
"risk_category": [
"CredentialExposure"
]
},
"lightsail:GetKeyPairs": {
"access_level": "Read",
"description": "Grants permission to get information about all key pairs",
"service_name": "Amazon Lightsail",
"risk_category": [
"CredentialExposure"
]
},
"lightsail:GetRelationalDatabaseMasterUserPassword": {
"access_level": "Write",
"description": "Grants permission to get the master user password of a relational database",
"service_name": "Amazon Lightsail",
"risk_category": [
"CredentialExposure",
"ResourceExposure"
]
},
"mediapackage:RotateChannelCredentials": {
"access_level": "Write",
"description": "Grants permission to rotate credentials for the first IngestEndpoint of a Channel in AWS Elemental MediaPackage",
"service_name": "AWS Elemental MediaPackage",
"risk_category": [
"CredentialExposure"
]
},
"mediapackage:RotateIngestEndpointCredentials": {
"access_level": "Write",
"description": "Grants permission to rotate IngestEndpoint credentials for a Channel in AWS Elemental MediaPackage",
"service_name": "AWS Elemental MediaPackage",
"risk_category": [
"CredentialExposure",
"ResourceExposure"
]
},
"rds-db:connect": {
"access_level": "Permissions management",
"description": "Allows IAM role or user to connect to RDS database",
"service_name": "Amazon RDS IAM Authentication",
"risk_category": [
"CredentialExposure",
"ResourceExposure"
]
},
"redshift:GetClusterCredentials": {
"access_level": "Write",
"description": "Grants permission to get temporary credentials to access an Amazon Redshift database by the specified AWS account",
"service_name": "Amazon Redshift",
"risk_category": [
"CredentialExposure"
]
},
"s3:GetDataAccess": {
"access_level": "Read",
"description": "Grants permission to get Access",
"service_name": "Amazon S3",
"risk_category": [
"CredentialExposure"
]
},
"snowball:GetJobUnlockCode": {
"access_level": "Read",
"description": "Grants permission to get the UnlockCode code value for the specified job",
"service_name": "AWS Snowball",
"risk_category": [
"CredentialExposure"
]
},
"sso-directory:ListBearerTokens": {
"access_level": "Read",
"description": "Grants permission to list bearer tokens for a given provisioning tenant",
"service_name": "AWS IAM Identity Center Directory",
"risk_category": [
"CredentialExposure"
]
},
"storagegateway:DescribeChapCredentials": {
"access_level": "Read",
"description": "Grants permission to get an array of Challenge-Handshake Authentication Protocol (CHAP) credentials information for a specified iSCSI target, one for each target-initiator pair",
"service_name": "AWS Storage Gateway",
"risk_category": [
"CredentialExposure"
]
},
"sts:AssumeRole": {
"access_level": "Write",
"description": "Grants permission to obtain a set of temporary security credentials that you can use to access AWS resources that you might not normally have access to",
"service_name": "AWS Security Token Service",
"risk_category": [
"CredentialExposure"
]
},
"sts:AssumeRoleWithSAML": {
"access_level": "Write",
"description": "Grants permission to obtain a set of temporary security credentials for users who have been authenticated via a SAML authentication response",
"service_name": "AWS Security Token Service",
"risk_category": [
"CredentialExposure"
]
},
"sts:AssumeRoleWithWebIdentity": {
"access_level": "Write",
"description": "Grants permission to obtain a set of temporary security credentials for users who have been authenticated in a mobile or web application with a web identity provider",
"service_name": "AWS Security Token Service",
"risk_category": [
"CredentialExposure"
]
},
"sts:GetFederationToken": {
"access_level": "Read",
"description": "Grants permission to obtain a set of temporary security credentials (consisting of an access key ID, a secret access key, and a security token) for a federated user",
"service_name": "AWS Security Token Service",
"risk_category": [
"CredentialExposure"
]
},
"sts:GetSessionToken": {
"access_level": "Read",
"description": "Grants permission to obtain a set of temporary security credentials (consisting of an access key ID, a secret access key, and a security token) for an AWS account or IAM user",
"service_name": "AWS Security Token Service",
"risk_category": [
"CredentialExposure"
]
},
"waf-regional:GetChangeToken": {
"access_level": "Read",
"description": "Grants permission to retrieve a change token to use in create, update, and delete requests",
"service_name": "AWS WAF Regional",
"risk_category": [
"CredentialExposure"
]
},
"waf:GetChangeToken": {
"access_level": "Read",
"description": "Grants permission to retrieve a change token to use in create, update, and delete requests",
"service_name": "AWS WAF",
"risk_category": [
"CredentialExposure"
]
},
"aoss:APIAccessAll": {
"access_level": "Write",
"description": "Grant permission to all the supported Opensearch APIs",
"service_name": "Amazon OpenSearch Serverless",
"risk_category": [
"DataAccess"
]
},
"aoss:DashboardsAccessAll": {
"access_level": "Write",
"description": "Grants permission to Opensearch Serverless Dashboards",
"service_name": "Amazon OpenSearch Serverless",
"risk_category": [
"DataAccess"
]
},
"appsync:GetDataSource": {
"access_level": "Read",
"description": "Grants permission to retrieve a data source",
"service_name": "AWS AppSync",
"risk_category": [
"DataAccess"
]
},
"appsync:GetFunction": {
"access_level": "Read",
"description": "Grants permission to retrieve a function",
"service_name": "AWS AppSync",
"risk_category": [
"DataAccess"
]
},
"athena:GetQueryExecution": {
"access_level": "Read",
"description": "Grants permission to get information about the specified query execution",
"service_name": "Amazon Athena",
"risk_category": [
"DataAccess"
]
},
"athena:GetQueryResults": {
"access_level": "Read",
"description": "Grants permission to get the query results",
"service_name": "Amazon Athena",
"risk_category": [
"DataAccess"
]
},
"athena:GetQueryResultsStream": {
"access_level": "Read",
"description": "Grants permission to get the query results stream",
"service_name": "Amazon Athena",
"risk_category": [
"DataAccess"
]
},
"cassandra:Select": {
"access_level": "Read",
"description": "Grants permission to SELECT data from a table",
"service_name": "Amazon Keyspaces (for Apache Cassandra)",
"risk_category": [
"DataAccess"
]
},
"chatbot:DescribeSlackChannels": {
"access_level": "Read",
"description": "Grants permission to list all public Slack channels in the Slack workspace connected to the AWS Account onboarded with AWS Chatbot service",
"service_name": "AWS Chatbot",
"risk_category": [
"DataAccess"
]
},
"chatbot:DescribeSlackUserIdentities": {
"access_level": "Read",
"description": "Grants permission to describe AWS Chatbot Slack User Identities",
"service_name": "AWS Chatbot",
"risk_category": [
"DataAccess"
]
},
"chatbot:ListMicrosoftTeamsConfiguredTeams": {
"access_level": "Read",
"description": "Grants permission to list all Microsoft Teams connected to the AWS Account onboarded with AWS Chatbot service",
"service_name": "AWS Chatbot",
"risk_category": [
"DataAccess"
]
},
"chatbot:ListMicrosoftTeamsUserIdentities": {
"access_level": "Read",
"description": "Grants permission to describe AWS Chatbot Microsoft Teams User Identities",
"service_name": "AWS Chatbot",
"risk_category": [
"DataAccess"
]
},
"chime:GetAttendee": {
"access_level": "Read",
"description": "Grants permission to get attendee details for a specified meeting ID and attendee ID",
"service_name": "Amazon Chime",
"risk_category": [
"DataAccess"
]
},
"chime:GetChannelMessage": {
"access_level": "Read",
"description": "Grants permission to get the full details of a channel message",
"service_name": "Amazon Chime",
"risk_category": [
"DataAccess"
]
},
"chime:GetMeeting": {
"access_level": "Read",
"description": "Grants permission to get the meeting record for a specified meeting ID",
"service_name": "Amazon Chime",
"risk_category": [
"DataAccess"
]
},
"chime:GetMeetingDetail": {
"access_level": "Read",
"description": "Grants permission to get attendee, connection, and other details for a meeting",
"service_name": "Amazon Chime",
"risk_category": [
"DataAccess"
]
},
"chime:GetRoom": {
"access_level": "Read",
"description": "Grants permission to retrieve a room",
"service_name": "Amazon Chime",
"risk_category": [
"DataAccess"
]
},
"chime:GetUser": {
"access_level": "Read",
"description": "Grants permission to get details for the specified user ID",
"service_name": "Amazon Chime",
"risk_category": [
"DataAccess"
]
},
"chime:GetUserActivityReportData": {
"access_level": "Read",
"description": "Grants permission to get a summary of user activity on the user details page",
"service_name": "Amazon Chime",
"risk_category": [
"DataAccess"
]
},
"chime:GetUserByEmail": {
"access_level": "Read",
"description": "Grants permission to get user details for an Amazon Chime user based on the email address in an Amazon Chime Enterprise or Team account",
"service_name": "Amazon Chime",
"risk_category": [
"DataAccess"
]
},
"chime:GetUserSettings": {
"access_level": "Read",
"description": "Grants permission to get user settings related to the specified Amazon Chime user",
"service_name": "Amazon Chime",
"risk_category": [
"DataAccess"
]
},
"chime:ListAttendees": {
"access_level": "List",
"description": "Grants permission to list up to 100 attendees for a specified Amazon Chime SDK meeting",
"service_name": "Amazon Chime",
"risk_category": [
"DataAccess"
]
},
"chime:ListMeetingEvents": {
"access_level": "List",
"description": "Grants permission to list all events that occurred for a specified meeting",
"service_name": "Amazon Chime",
"risk_category": [
"DataAccess"
]
},
"chime:ListMeetings": {
"access_level": "List",
"description": "Grants permission to list up to 100 active Amazon Chime SDK meetings",
"service_name": "Amazon Chime",
"risk_category": [
"DataAccess"
]
},
"chime:ListUsers": {
"access_level": "List",
"description": "Grants permission to list the users that belong to the specified Amazon Chime account",
"service_name": "Amazon Chime",
"risk_category": [
"DataAccess"
]
},
"cleanrooms:GetProtectedQuery": {
"access_level": "Read",
"description": "Grants permission to view a protected query",
"service_name": "AWS Clean Rooms",
"risk_category": [
"DataAccess"
]
},
"cloudformation:GetTemplate": {
"access_level": "Read",
"description": "Grants permission to return the template body for a specified stack",
"service_name": "AWS CloudFormation & Cloud Control API",
"risk_category": [
"DataAccess"
]
},
"cloudfront:GetFunction": {
"access_level": "Read",
"description": "Grants permission to get a CloudFront function's code",
"service_name": "Amazon CloudFront",
"risk_category": [
"DataAccess"
]
},
"cloudtrail:GetQueryResults": {
"access_level": "Read",
"description": "Grants permission to fetch results of a complete query",
"service_name": "AWS CloudTrail",
"risk_category": [
"DataAccess"
]
},
"cloudtrail:LookupEvents": {
"access_level": "Read",
"description": "Grants permission to look up and retrieve metric data for API activity events captured by CloudTrail that create, update, or delete resources in your account",
"service_name": "AWS CloudTrail",
"risk_category": [
"DataAccess"
]
},
"codeartifact:GetPackageVersionAsset": {
"access_level": "Read",
"description": "Grants permission to return an asset (or file) that is part of a package version",
"service_name": "AWS CodeArtifact",
"risk_category": [
"DataAccess"
]
},
"codeartifact:GetPackageVersionReadme": {
"access_level": "Read",
"description": "Grants permission to return a package version's readme file",
"service_name": "AWS CodeArtifact",
"risk_category": [
"DataAccess"
]
},
"codeartifact:ReadFromRepository": {
"access_level": "Read",
"description": "Grants permission to return package assets and metadata from a repository endpoint",
"service_name": "AWS CodeArtifact",
"risk_category": [
"DataAccess"
]
},
"codebuild:BatchGetReportGroups": {
"access_level": "Read",
"description": "Grants permission to return an array of ReportGroup objects that are specified by the input reportGroupArns parameter",
"service_name": "AWS CodeBuild",
"risk_category": [
"DataAccess"
]
},
"codebuild:BatchGetReports": {
"access_level": "Read",
"description": "Grants permission to return an array of the Report objects specified by the input reportArns parameter",
"service_name": "AWS CodeBuild",
"risk_category": [
"DataAccess"
]
},
"codecommit:BatchGetCommits": {
"access_level": "Read",
"description": "Grants permission to return information about one or more commits in an AWS CodeCommit repository",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codecommit:BatchGetPullRequests": {
"access_level": "Read",
"description": "Grants permission to return information about one or more pull requests in an AWS CodeCommit repository",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codecommit:BatchGetRepositories": {
"access_level": "Read",
"description": "Grants permission to get information about multiple repositories",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codecommit:DescribeMergeConflicts": {
"access_level": "Read",
"description": "Grants permission to get information about specific merge conflicts when attempting to merge two commits using either the three-way or the squash merge option",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codecommit:DescribePullRequestEvents": {
"access_level": "Read",
"description": "Grants permission to return information about one or more pull request events",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codecommit:GetApprovalRuleTemplate": {
"access_level": "Read",
"description": "Grants permission to return information about an approval rule template",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codecommit:GetBlob": {
"access_level": "Read",
"description": "Grants permission to view the encoded content of an individual file in an AWS CodeCommit repository from the AWS CodeCommit console",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codecommit:GetBranch": {
"access_level": "Read",
"description": "Grants permission to get details about a branch in an AWS CodeCommit repository with this API; does not control Git branch actions",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codecommit:GetComment": {
"access_level": "Read",
"description": "Grants permission to get the content of a comment made on a change, file, or commit in a repository",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codecommit:GetCommentReactions": {
"access_level": "Read",
"description": "Grants permission to get the reactions on a comment",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codecommit:GetCommentsForComparedCommit": {
"access_level": "Read",
"description": "Grants permission to get information about comments made on the comparison between two commits",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codecommit:GetCommentsForPullRequest": {
"access_level": "Read",
"description": "Grants permission to get comments made on a pull request",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codecommit:GetCommit": {
"access_level": "Read",
"description": "Grants permission to return information about a commit, including commit message and committer information, with this API; does not control Git log actions",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codecommit:GetCommitHistory": {
"access_level": "Read",
"description": "Grants permission to get information about the history of commits in a repository",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codecommit:GetCommitsFromMergeBase": {
"access_level": "Read",
"description": "Grants permission to get information about the difference between commits in the context of a potential merge",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codecommit:GetDifferences": {
"access_level": "Read",
"description": "Grants permission to view information about the differences between valid commit specifiers such as a branch, tag, HEAD, commit ID, or other fully qualified reference",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codecommit:GetFile": {
"access_level": "Read",
"description": "Grants permission to return the base-64 encoded contents of a specified file and its metadata",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codecommit:GetFolder": {
"access_level": "Read",
"description": "Grants permission to return the contents of a specified folder in a repository",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codecommit:GetMergeCommit": {
"access_level": "Read",
"description": "Grants permission to get information about a merge commit created by one of the merge options for pull requests that creates merge commits. Not all merge options create merge commits. This permission does not control Git merge actions",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codecommit:GetMergeConflicts": {
"access_level": "Read",
"description": "Grants permission to get information about merge conflicts between the before and after commit IDs for a pull request in a repository",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codecommit:GetMergeOptions": {
"access_level": "Read",
"description": "Grants permission to get information about merge options for pull requests that can be used to merge two commits; does not control Git merge actions",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codecommit:GetObjectIdentifier": {
"access_level": "Read",
"description": "Grants permission to resolve blobs, trees, and commits to their identifier",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codecommit:GetPullRequest": {
"access_level": "Read",
"description": "Grants permission to get information about a pull request in a specified repository",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codecommit:GetPullRequestApprovalStates": {
"access_level": "Read",
"description": "Grants permission to retrieve the current approvals on an inputted pull request",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codecommit:GetPullRequestOverrideState": {
"access_level": "Read",
"description": "Grants permission to retrieve the current override state of a given pull request",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codecommit:GetReferences": {
"access_level": "Read",
"description": "Grants permission to get details about references in an AWS CodeCommit repository; does not control Git reference actions",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codecommit:GetTree": {
"access_level": "Read",
"description": "Grants permission to view the contents of a specified tree in an AWS CodeCommit repository from the AWS CodeCommit console",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codecommit:GitPull": {
"access_level": "Read",
"description": "Grants permission to pull information from an AWS CodeCommit repository to a local repo",
"service_name": "AWS CodeCommit",
"risk_category": [
"DataAccess"
]
},
"codeguru-profiler:GetRecommendations": {
"access_level": "Read",
"description": "Grants permission to get recommendations",
"service_name": "Amazon CodeGuru Profiler",
"risk_category": [
"DataAccess"
]
},
"codeguru-reviewer:DescribeCodeReview": {
"access_level": "Read",
"description": "Grants permission to describe a code review",
"service_name": "Amazon CodeGuru Reviewer",
"risk_category": [
"DataAccess"
]
},
"codeguru-reviewer:DescribeRecommendationFeedback": {
"access_level": "Read",
"description": "Grants permission to describe a recommendation feedback on a code review",
"service_name": "Amazon CodeGuru Reviewer",
"risk_category": [
"DataAccess"
]
},
"codepipeline:GetPipelineExecution": {
"access_level": "Read",
"description": "Grants permission to view information about an execution of a pipeline, including details about artifacts, the pipeline execution ID, and the name, version, and status of the pipeline",
"service_name": "AWS CodePipeline",
"risk_category": [
"DataAccess"
]
},
"cognito-identity:LookupDeveloperIdentity": {
"access_level": "Read",
"description": "Grants permission to retrieve the IdentityId associated with a DeveloperUserIdentifier or the list of DeveloperUserIdentifiers associated with an IdentityId for an existing identity",
"service_name": "Amazon Cognito Identity",
"risk_category": [
"DataAccess"
]
},
"cognito-idp:AdminGetDevice": {
"access_level": "Read",
"description": "Grants permission to get information about any user's devices",
"service_name": "Amazon Cognito User Pools",
"risk_category": [
"DataAccess"
]
},
"cognito-idp:AdminGetUser": {
"access_level": "Read",
"description": "Grants permission to look up any user by user name",
"service_name": "Amazon Cognito User Pools",
"risk_category": [
"DataAccess"
]
},
"cognito-idp:AdminListDevices": {
"access_level": "List",
"description": "Grants permission to list any user's remembered devices",
"service_name": "Amazon Cognito User Pools",
"risk_category": [
"DataAccess"
]
},
"cognito-idp:AdminListGroupsForUser": {
"access_level": "List",
"description": "Grants permission to list the groups that any user belongs to",
"service_name": "Amazon Cognito User Pools",
"risk_category": [
"DataAccess"
]
},
"cognito-idp:AdminListUserAuthEvents": {
"access_level": "Read",
"description": "Grants permission to lists sign-in events for any user",
"service_name": "Amazon Cognito User Pools",
"risk_category": [
"DataAccess"
]
},
"cognito-idp:GetDevice": {
"access_level": "Read",
"description": "Grants permission to get the device",
"service_name": "Amazon Cognito User Pools",
"risk_category": [
"DataAccess"
]
},
"cognito-idp:GetGroup": {
"access_level": "Read",
"description": "Grants permission to describe a user pool group",