aws-iam-data 0.0.282 → 0.0.284
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -3
- package/dist/data/json/changelog.json +47 -0
- package/dist/data/json/iam.json +312 -83
- package/dist/data/json/metadata.json +38 -9
- package/dist/data/json/reports.json +11 -11
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,7 +3,12 @@ This repository provides AWS IAM data gathered from the official [AWS IAM docs](
|
|
|
3
3
|
|
|
4
4
|
The package also includes the [TypeScript interface definitions](src/awsIamData.d.ts).
|
|
5
5
|
|
|
6
|
-
##
|
|
6
|
+
## Interactively query the dataset
|
|
7
|
+
You can query the dataset with [sql-workbench.com](https://www.sql-workbench.com/) by clicking on the link below:
|
|
8
|
+
|
|
9
|
+
[AWS IAM Data on SQL Workbench](https://sql-workbench.com/#queries=v0,ATTACH-'https%3A%2F%2Fraw.githubusercontent.com%2Ftobilg%2Faws%20iam%20data%2Fmain%2Fdata%2Fdb%2Fiam.duckdb'-as-aws_iam-(READ_ONLY)~,SELECT-s.name%2C-count(distinct-a.action_id)%3A%3Aint-AS-action_cnt-FROM-aws_iam.services-s-INNER-JOIN-aws_iam.actions-a-ON-a.service_id-%3D-s.service_id-GROUP-BY-ALL-ORDER-BY-action_cnt-DESC~)
|
|
10
|
+
|
|
11
|
+
## Library usage
|
|
7
12
|
You can install [aws-iam-data](https://www.npmjs.com/package/aws-iam-data) as a dependecy to your Node/TypeScript project via
|
|
8
13
|
|
|
9
14
|
```bash
|
|
@@ -38,11 +43,11 @@ The CI pipeline will check for AWS IAM docs updates everyday at 4AM UTC, and aut
|
|
|
38
43
|
|
|
39
44
|
|
|
40
45
|
## Data exports
|
|
41
|
-
The JSON-based data gets automatically exported as CSV and Parquet files as well. Please look in the respective directories:
|
|
46
|
+
The JSON-based data gets automatically exported as CSV and Parquet files, as well as a DuckDB database. Please look in the respective directories:
|
|
42
47
|
|
|
43
48
|
* [data/csv/](data/csv/)
|
|
44
49
|
* [data/parquet/](data/parquet/)
|
|
45
|
-
|
|
50
|
+
* [data/db/](data/db/)
|
|
46
51
|
## Entity Relationship Diagram
|
|
47
52
|
The ERD of the exported data tables looks like this:
|
|
48
53
|

|
|
@@ -1,4 +1,51 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"dateOfChange": "2024-10-16",
|
|
4
|
+
"addedServices": [],
|
|
5
|
+
"removedServices": [],
|
|
6
|
+
"addedActions": {
|
|
7
|
+
"AWS Elemental MediaConnect": [
|
|
8
|
+
"mediaconnect:DescribeFlowSourceThumbnail"
|
|
9
|
+
]
|
|
10
|
+
},
|
|
11
|
+
"removedActions": {
|
|
12
|
+
"AWS Lambda": [
|
|
13
|
+
"lambda:DeleteResourcePolicy",
|
|
14
|
+
"lambda:GetPublicAccessBlockConfig",
|
|
15
|
+
"lambda:GetResourcePolicy",
|
|
16
|
+
"lambda:PutPublicAccessBlockConfig",
|
|
17
|
+
"lambda:PutResourcePolicy"
|
|
18
|
+
]
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"dateOfChange": "2024-10-12",
|
|
23
|
+
"addedServices": [
|
|
24
|
+
"AWS End User Messaging Social"
|
|
25
|
+
],
|
|
26
|
+
"removedServices": [],
|
|
27
|
+
"addedActions": {
|
|
28
|
+
"Amazon Q Business": [
|
|
29
|
+
"qbusiness:DisableAclOnDataSource"
|
|
30
|
+
],
|
|
31
|
+
"AWS End User Messaging Social": [
|
|
32
|
+
"social-messaging:AssociateWhatsAppBusinessAccount",
|
|
33
|
+
"social-messaging:DeleteWhatsAppMessageMedia",
|
|
34
|
+
"social-messaging:DisassociateWhatsAppBusinessAccount",
|
|
35
|
+
"social-messaging:GetLinkedWhatsAppBusinessAccount",
|
|
36
|
+
"social-messaging:GetLinkedWhatsAppBusinessAccountPhoneNumber",
|
|
37
|
+
"social-messaging:GetWhatsAppMessageMedia",
|
|
38
|
+
"social-messaging:ListLinkedWhatsAppBusinessAccounts",
|
|
39
|
+
"social-messaging:ListTagsForResource",
|
|
40
|
+
"social-messaging:PostWhatsAppMessageMedia",
|
|
41
|
+
"social-messaging:PutWhatsAppBusinessAccountEventDestinations",
|
|
42
|
+
"social-messaging:SendWhatsAppMessage",
|
|
43
|
+
"social-messaging:TagResource",
|
|
44
|
+
"social-messaging:UntagResource"
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
|
+
"removedActions": {}
|
|
48
|
+
},
|
|
2
49
|
{
|
|
3
50
|
"dateOfChange": "2024-10-11",
|
|
4
51
|
"addedServices": [
|
package/dist/data/json/iam.json
CHANGED
|
@@ -41175,7 +41175,7 @@
|
|
|
41175
41175
|
"name": "UpdateLinkAttributes",
|
|
41176
41176
|
"apiReferenceUrl": "https://docs.aws.amazon.com/directoryservice/latest/APIReference/API_UpdateLinkAttributes.html",
|
|
41177
41177
|
"permissionOnly": false,
|
|
41178
|
-
"description": "Grants permission to update a given typed link
|
|
41178
|
+
"description": "Grants permission to update a given typed link's attributes. Attributes to be updated must not contribute to the typed link's identity, as defined by its IdentityAttributeOrder",
|
|
41179
41179
|
"accessLevel": "Write",
|
|
41180
41180
|
"resourceTypes": [
|
|
41181
41181
|
{
|
|
@@ -146149,6 +146149,21 @@
|
|
|
146149
146149
|
}
|
|
146150
146150
|
]
|
|
146151
146151
|
},
|
|
146152
|
+
{
|
|
146153
|
+
"name": "DescribeFlowSourceThumbnail",
|
|
146154
|
+
"apiReferenceUrl": "https://docs.aws.amazon.com/mediaconnect/latest/api/v1-flows-flowarn-source-thumbnail.html",
|
|
146155
|
+
"permissionOnly": false,
|
|
146156
|
+
"description": "Grants permission to view flow's source thumbnail",
|
|
146157
|
+
"accessLevel": "Read",
|
|
146158
|
+
"resourceTypes": [
|
|
146159
|
+
{
|
|
146160
|
+
"resourceType": "",
|
|
146161
|
+
"required": false,
|
|
146162
|
+
"conditionKeys": [],
|
|
146163
|
+
"dependentActions": []
|
|
146164
|
+
}
|
|
146165
|
+
]
|
|
146166
|
+
},
|
|
146152
146167
|
{
|
|
146153
146168
|
"name": "DescribeGateway",
|
|
146154
146169
|
"apiReferenceUrl": "https://docs.aws.amazon.com/mediaconnect/latest/api/v1-gateways-gatewayarn.html",
|
|
@@ -153440,6 +153455,287 @@
|
|
|
153440
153455
|
}
|
|
153441
153456
|
]
|
|
153442
153457
|
},
|
|
153458
|
+
{
|
|
153459
|
+
"name": "AWS End User Messaging Social",
|
|
153460
|
+
"authReferenceUrl": "https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsendusermessagingsocial.html",
|
|
153461
|
+
"servicePrefix": "social-messaging",
|
|
153462
|
+
"actions": [
|
|
153463
|
+
{
|
|
153464
|
+
"name": "AssociateWhatsAppBusinessAccount",
|
|
153465
|
+
"apiReferenceUrl": "https://docs.aws.amazon.com/social-messaging/latest/APIReference/API_AssociateWhatsAppBusinessAccount.html",
|
|
153466
|
+
"permissionOnly": false,
|
|
153467
|
+
"description": "Grants permission to associate a WhatsApp Business Account with your AWS account",
|
|
153468
|
+
"accessLevel": "Write",
|
|
153469
|
+
"resourceTypes": [
|
|
153470
|
+
{
|
|
153471
|
+
"resourceType": "",
|
|
153472
|
+
"required": false,
|
|
153473
|
+
"conditionKeys": [
|
|
153474
|
+
"aws:RequestTag/${TagKey}",
|
|
153475
|
+
"aws:ResourceTag/${TagKey}",
|
|
153476
|
+
"aws:TagKeys"
|
|
153477
|
+
],
|
|
153478
|
+
"dependentActions": []
|
|
153479
|
+
}
|
|
153480
|
+
]
|
|
153481
|
+
},
|
|
153482
|
+
{
|
|
153483
|
+
"name": "DeleteWhatsAppMessageMedia",
|
|
153484
|
+
"apiReferenceUrl": "https://docs.aws.amazon.com/social-messaging/latest/APIReference/API_DeleteWhatsAppMessageMedia.html",
|
|
153485
|
+
"permissionOnly": false,
|
|
153486
|
+
"description": "Grants permission to delete a media object from WhatsApp",
|
|
153487
|
+
"accessLevel": "Write",
|
|
153488
|
+
"resourceTypes": [
|
|
153489
|
+
{
|
|
153490
|
+
"resourceType": "phone-number-id",
|
|
153491
|
+
"required": true,
|
|
153492
|
+
"conditionKeys": [],
|
|
153493
|
+
"dependentActions": []
|
|
153494
|
+
}
|
|
153495
|
+
]
|
|
153496
|
+
},
|
|
153497
|
+
{
|
|
153498
|
+
"name": "DisassociateWhatsAppBusinessAccount",
|
|
153499
|
+
"apiReferenceUrl": "https://docs.aws.amazon.com/social-messaging/latest/APIReference/API_DisassociateWhatsAppBusinessAccount.html",
|
|
153500
|
+
"permissionOnly": false,
|
|
153501
|
+
"description": "Grants permission to disassociate a WhatsApp Business Account from your AWS account",
|
|
153502
|
+
"accessLevel": "Write",
|
|
153503
|
+
"resourceTypes": [
|
|
153504
|
+
{
|
|
153505
|
+
"resourceType": "waba",
|
|
153506
|
+
"required": true,
|
|
153507
|
+
"conditionKeys": [],
|
|
153508
|
+
"dependentActions": []
|
|
153509
|
+
}
|
|
153510
|
+
]
|
|
153511
|
+
},
|
|
153512
|
+
{
|
|
153513
|
+
"name": "GetLinkedWhatsAppBusinessAccount",
|
|
153514
|
+
"apiReferenceUrl": "https://docs.aws.amazon.com/social-messaging/latest/APIReference/API_GetLinkedWhatsAppBusinessAccount.html",
|
|
153515
|
+
"permissionOnly": false,
|
|
153516
|
+
"description": "Grants permission to view the details of a WhatsApp Business Account",
|
|
153517
|
+
"accessLevel": "Read",
|
|
153518
|
+
"resourceTypes": [
|
|
153519
|
+
{
|
|
153520
|
+
"resourceType": "waba",
|
|
153521
|
+
"required": true,
|
|
153522
|
+
"conditionKeys": [],
|
|
153523
|
+
"dependentActions": []
|
|
153524
|
+
}
|
|
153525
|
+
]
|
|
153526
|
+
},
|
|
153527
|
+
{
|
|
153528
|
+
"name": "GetLinkedWhatsAppBusinessAccountPhoneNumber",
|
|
153529
|
+
"apiReferenceUrl": "https://docs.aws.amazon.com/social-messaging/latest/APIReference/API_GetLinkedWhatsAppBusinessAccountPhoneNumber.html",
|
|
153530
|
+
"permissionOnly": false,
|
|
153531
|
+
"description": "Grants permission to view the details of a phone number",
|
|
153532
|
+
"accessLevel": "Read",
|
|
153533
|
+
"resourceTypes": [
|
|
153534
|
+
{
|
|
153535
|
+
"resourceType": "phone-number-id",
|
|
153536
|
+
"required": true,
|
|
153537
|
+
"conditionKeys": [],
|
|
153538
|
+
"dependentActions": []
|
|
153539
|
+
}
|
|
153540
|
+
]
|
|
153541
|
+
},
|
|
153542
|
+
{
|
|
153543
|
+
"name": "GetWhatsAppMessageMedia",
|
|
153544
|
+
"apiReferenceUrl": "https://docs.aws.amazon.com/social-messaging/latest/APIReference/API_GetWhatsAppMessageMedia.html",
|
|
153545
|
+
"permissionOnly": false,
|
|
153546
|
+
"description": "Grants permission to get a media object from WhatsApp",
|
|
153547
|
+
"accessLevel": "Write",
|
|
153548
|
+
"resourceTypes": [
|
|
153549
|
+
{
|
|
153550
|
+
"resourceType": "phone-number-id",
|
|
153551
|
+
"required": true,
|
|
153552
|
+
"conditionKeys": [],
|
|
153553
|
+
"dependentActions": []
|
|
153554
|
+
}
|
|
153555
|
+
]
|
|
153556
|
+
},
|
|
153557
|
+
{
|
|
153558
|
+
"name": "ListLinkedWhatsAppBusinessAccounts",
|
|
153559
|
+
"apiReferenceUrl": "https://docs.aws.amazon.com/social-messaging/latest/APIReference/API_ListLinkedWhatsAppBusinessAccounts.html",
|
|
153560
|
+
"permissionOnly": false,
|
|
153561
|
+
"description": "Grants permission to view all of your WhatsApp Business Accounts",
|
|
153562
|
+
"accessLevel": "List",
|
|
153563
|
+
"resourceTypes": [
|
|
153564
|
+
{
|
|
153565
|
+
"resourceType": "",
|
|
153566
|
+
"required": false,
|
|
153567
|
+
"conditionKeys": [],
|
|
153568
|
+
"dependentActions": []
|
|
153569
|
+
}
|
|
153570
|
+
]
|
|
153571
|
+
},
|
|
153572
|
+
{
|
|
153573
|
+
"name": "ListTagsForResource",
|
|
153574
|
+
"apiReferenceUrl": "https://docs.aws.amazon.com/social-messaging/latest/APIReference/API_ListTagsForResource.html",
|
|
153575
|
+
"permissionOnly": false,
|
|
153576
|
+
"description": "Grants permission to list tags for a resource",
|
|
153577
|
+
"accessLevel": "Read",
|
|
153578
|
+
"resourceTypes": [
|
|
153579
|
+
{
|
|
153580
|
+
"resourceType": "phone-number-id",
|
|
153581
|
+
"required": false,
|
|
153582
|
+
"conditionKeys": [],
|
|
153583
|
+
"dependentActions": []
|
|
153584
|
+
},
|
|
153585
|
+
{
|
|
153586
|
+
"resourceType": "waba",
|
|
153587
|
+
"required": false,
|
|
153588
|
+
"conditionKeys": [],
|
|
153589
|
+
"dependentActions": []
|
|
153590
|
+
}
|
|
153591
|
+
]
|
|
153592
|
+
},
|
|
153593
|
+
{
|
|
153594
|
+
"name": "PostWhatsAppMessageMedia",
|
|
153595
|
+
"apiReferenceUrl": "https://docs.aws.amazon.com/social-messaging/latest/APIReference/API_PostWhatsAppMessageMedia.html",
|
|
153596
|
+
"permissionOnly": false,
|
|
153597
|
+
"description": "Grants permission to upload a media object to WhatsApp",
|
|
153598
|
+
"accessLevel": "Write",
|
|
153599
|
+
"resourceTypes": [
|
|
153600
|
+
{
|
|
153601
|
+
"resourceType": "phone-number-id",
|
|
153602
|
+
"required": true,
|
|
153603
|
+
"conditionKeys": [],
|
|
153604
|
+
"dependentActions": []
|
|
153605
|
+
}
|
|
153606
|
+
]
|
|
153607
|
+
},
|
|
153608
|
+
{
|
|
153609
|
+
"name": "PutWhatsAppBusinessAccountEventDestinations",
|
|
153610
|
+
"apiReferenceUrl": "https://docs.aws.amazon.com/social-messaging/latest/APIReference/API_PutWhatsAppBusinessAccountEventDestinations.html",
|
|
153611
|
+
"permissionOnly": false,
|
|
153612
|
+
"description": "Grants permission to update a WhatsApp Business Accounts event destination",
|
|
153613
|
+
"accessLevel": "Write",
|
|
153614
|
+
"resourceTypes": [
|
|
153615
|
+
{
|
|
153616
|
+
"resourceType": "waba",
|
|
153617
|
+
"required": true,
|
|
153618
|
+
"conditionKeys": [],
|
|
153619
|
+
"dependentActions": []
|
|
153620
|
+
}
|
|
153621
|
+
]
|
|
153622
|
+
},
|
|
153623
|
+
{
|
|
153624
|
+
"name": "SendWhatsAppMessage",
|
|
153625
|
+
"apiReferenceUrl": "https://docs.aws.amazon.com/social-messaging/latest/APIReference/API_SendWhatsAppMessage.html",
|
|
153626
|
+
"permissionOnly": false,
|
|
153627
|
+
"description": "Grants permission to send a message through WhatsApp",
|
|
153628
|
+
"accessLevel": "Write",
|
|
153629
|
+
"resourceTypes": [
|
|
153630
|
+
{
|
|
153631
|
+
"resourceType": "phone-number-id",
|
|
153632
|
+
"required": true,
|
|
153633
|
+
"conditionKeys": [],
|
|
153634
|
+
"dependentActions": []
|
|
153635
|
+
}
|
|
153636
|
+
]
|
|
153637
|
+
},
|
|
153638
|
+
{
|
|
153639
|
+
"name": "TagResource",
|
|
153640
|
+
"apiReferenceUrl": "https://docs.aws.amazon.com/social-messaging/latest/APIReference/API_TagResource.html",
|
|
153641
|
+
"permissionOnly": false,
|
|
153642
|
+
"description": "Grants permission to add a tag to a resource",
|
|
153643
|
+
"accessLevel": "Tagging",
|
|
153644
|
+
"resourceTypes": [
|
|
153645
|
+
{
|
|
153646
|
+
"resourceType": "phone-number-id",
|
|
153647
|
+
"required": false,
|
|
153648
|
+
"conditionKeys": [],
|
|
153649
|
+
"dependentActions": []
|
|
153650
|
+
},
|
|
153651
|
+
{
|
|
153652
|
+
"resourceType": "waba",
|
|
153653
|
+
"required": false,
|
|
153654
|
+
"conditionKeys": [],
|
|
153655
|
+
"dependentActions": []
|
|
153656
|
+
},
|
|
153657
|
+
{
|
|
153658
|
+
"resourceType": "",
|
|
153659
|
+
"required": false,
|
|
153660
|
+
"conditionKeys": [
|
|
153661
|
+
"aws:RequestTag/${TagKey}",
|
|
153662
|
+
"aws:ResourceTag/${TagKey}",
|
|
153663
|
+
"aws:TagKeys"
|
|
153664
|
+
],
|
|
153665
|
+
"dependentActions": []
|
|
153666
|
+
}
|
|
153667
|
+
]
|
|
153668
|
+
},
|
|
153669
|
+
{
|
|
153670
|
+
"name": "UntagResource",
|
|
153671
|
+
"apiReferenceUrl": "https://docs.aws.amazon.com/social-messaging/latest/APIReference/API_UntagResource.html",
|
|
153672
|
+
"permissionOnly": false,
|
|
153673
|
+
"description": "Grants permission to remove a tag from a resource",
|
|
153674
|
+
"accessLevel": "Tagging",
|
|
153675
|
+
"resourceTypes": [
|
|
153676
|
+
{
|
|
153677
|
+
"resourceType": "phone-number-id",
|
|
153678
|
+
"required": false,
|
|
153679
|
+
"conditionKeys": [],
|
|
153680
|
+
"dependentActions": []
|
|
153681
|
+
},
|
|
153682
|
+
{
|
|
153683
|
+
"resourceType": "waba",
|
|
153684
|
+
"required": false,
|
|
153685
|
+
"conditionKeys": [],
|
|
153686
|
+
"dependentActions": []
|
|
153687
|
+
},
|
|
153688
|
+
{
|
|
153689
|
+
"resourceType": "",
|
|
153690
|
+
"required": false,
|
|
153691
|
+
"conditionKeys": [
|
|
153692
|
+
"aws:ResourceTag/${TagKey}",
|
|
153693
|
+
"aws:TagKeys"
|
|
153694
|
+
],
|
|
153695
|
+
"dependentActions": []
|
|
153696
|
+
}
|
|
153697
|
+
]
|
|
153698
|
+
}
|
|
153699
|
+
],
|
|
153700
|
+
"resourceTypes": [
|
|
153701
|
+
{
|
|
153702
|
+
"name": "phone-number-id",
|
|
153703
|
+
"apiReferenceUrl": "https://docs.aws.amazon.com/social-messaging/latest/APIReference/API_WhatsAppPhoneNumberDetail.html",
|
|
153704
|
+
"arnPattern": "arn:${Partition}:social-messaging:${Region}:${Account}:phone-number-id/${OriginationPhoneNumberId}",
|
|
153705
|
+
"conditionKeys": [
|
|
153706
|
+
"aws:ResourceTag/${TagKey}"
|
|
153707
|
+
]
|
|
153708
|
+
},
|
|
153709
|
+
{
|
|
153710
|
+
"name": "waba",
|
|
153711
|
+
"apiReferenceUrl": "https://docs.aws.amazon.com/social-messaging/latest/APIReference/API_LinkedWhatsAppBusinessAccountSummary.html",
|
|
153712
|
+
"arnPattern": "arn:${Partition}:social-messaging:${Region}:${Account}:waba/${WabaId}",
|
|
153713
|
+
"conditionKeys": [
|
|
153714
|
+
"aws:ResourceTag/${TagKey}"
|
|
153715
|
+
]
|
|
153716
|
+
}
|
|
153717
|
+
],
|
|
153718
|
+
"conditionKeys": [
|
|
153719
|
+
{
|
|
153720
|
+
"name": "aws:RequestTag/${TagKey}",
|
|
153721
|
+
"apiReferenceUrl": "https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_condition-keys.html#condition-keys-requesttag",
|
|
153722
|
+
"description": "Filters access by the tags that are passed in the request",
|
|
153723
|
+
"type": "String"
|
|
153724
|
+
},
|
|
153725
|
+
{
|
|
153726
|
+
"name": "aws:ResourceTag/${TagKey}",
|
|
153727
|
+
"apiReferenceUrl": "https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_condition-keys.html#condition-keys-resourcetag",
|
|
153728
|
+
"description": "Filters access by the tags associated with the resource",
|
|
153729
|
+
"type": "String"
|
|
153730
|
+
},
|
|
153731
|
+
{
|
|
153732
|
+
"name": "aws:TagKeys",
|
|
153733
|
+
"apiReferenceUrl": "https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_condition-keys.html#condition-keys-tagkeys",
|
|
153734
|
+
"description": "Filters access by the tag keys that are passed in the request",
|
|
153735
|
+
"type": "ArrayOfString"
|
|
153736
|
+
}
|
|
153737
|
+
]
|
|
153738
|
+
},
|
|
153443
153739
|
{
|
|
153444
153740
|
"name": "AWS Entity Resolution",
|
|
153445
153741
|
"authReferenceUrl": "https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsentityresolution.html",
|
|
@@ -216583,23 +216879,6 @@
|
|
|
216583
216879
|
}
|
|
216584
216880
|
]
|
|
216585
216881
|
},
|
|
216586
|
-
{
|
|
216587
|
-
"name": "DeleteResourcePolicy",
|
|
216588
|
-
"apiReferenceUrl": "https://docs.aws.amazon.com/lambda/latest/dg/API_DeleteResourcePolicy.html",
|
|
216589
|
-
"permissionOnly": false,
|
|
216590
|
-
"description": "Grants permission to delete the resource-based policy for an AWS Lambda function, version, or alias",
|
|
216591
|
-
"accessLevel": "Permissions management",
|
|
216592
|
-
"resourceTypes": [
|
|
216593
|
-
{
|
|
216594
|
-
"resourceType": "function",
|
|
216595
|
-
"required": true,
|
|
216596
|
-
"conditionKeys": [],
|
|
216597
|
-
"dependentActions": [
|
|
216598
|
-
"lambda:RemovePermission"
|
|
216599
|
-
]
|
|
216600
|
-
}
|
|
216601
|
-
]
|
|
216602
|
-
},
|
|
216603
216882
|
{
|
|
216604
216883
|
"name": "DisableReplication",
|
|
216605
216884
|
"apiReferenceUrl": "https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/lambda-edge-permissions.html",
|
|
@@ -216878,38 +217157,6 @@
|
|
|
216878
217157
|
}
|
|
216879
217158
|
]
|
|
216880
217159
|
},
|
|
216881
|
-
{
|
|
216882
|
-
"name": "GetPublicAccessBlockConfig",
|
|
216883
|
-
"apiReferenceUrl": "https://docs.aws.amazon.com/lambda/latest/dg/API_GetPublicAccessBlockConfig.html",
|
|
216884
|
-
"permissionOnly": false,
|
|
216885
|
-
"description": "Grants permission to view the PublicAccessBlockConfig of an AWS Lambda function",
|
|
216886
|
-
"accessLevel": "Read",
|
|
216887
|
-
"resourceTypes": [
|
|
216888
|
-
{
|
|
216889
|
-
"resourceType": "function",
|
|
216890
|
-
"required": true,
|
|
216891
|
-
"conditionKeys": [],
|
|
216892
|
-
"dependentActions": []
|
|
216893
|
-
}
|
|
216894
|
-
]
|
|
216895
|
-
},
|
|
216896
|
-
{
|
|
216897
|
-
"name": "GetResourcePolicy",
|
|
216898
|
-
"apiReferenceUrl": "https://docs.aws.amazon.com/lambda/latest/dg/API_GetResourcePolicy.html",
|
|
216899
|
-
"permissionOnly": false,
|
|
216900
|
-
"description": "Grants permission to view the resource-based policy for an AWS Lambda function, version, or alias",
|
|
216901
|
-
"accessLevel": "Read",
|
|
216902
|
-
"resourceTypes": [
|
|
216903
|
-
{
|
|
216904
|
-
"resourceType": "function",
|
|
216905
|
-
"required": true,
|
|
216906
|
-
"conditionKeys": [],
|
|
216907
|
-
"dependentActions": [
|
|
216908
|
-
"lambda:GetPolicy"
|
|
216909
|
-
]
|
|
216910
|
-
}
|
|
216911
|
-
]
|
|
216912
|
-
},
|
|
216913
217160
|
{
|
|
216914
217161
|
"name": "GetRuntimeManagementConfig",
|
|
216915
217162
|
"apiReferenceUrl": "https://docs.aws.amazon.com/lambda/latest/dg/API_GetRuntimeManagementConfig.html",
|
|
@@ -217313,39 +217560,6 @@
|
|
|
217313
217560
|
}
|
|
217314
217561
|
]
|
|
217315
217562
|
},
|
|
217316
|
-
{
|
|
217317
|
-
"name": "PutPublicAccessBlockConfig",
|
|
217318
|
-
"apiReferenceUrl": "https://docs.aws.amazon.com/lambda/latest/dg/API_PutPublicAccessBlockConfig.html",
|
|
217319
|
-
"permissionOnly": false,
|
|
217320
|
-
"description": "Grants permission to update the PublicAccessBlockConfig of an AWS Lambda function",
|
|
217321
|
-
"accessLevel": "Permissions management",
|
|
217322
|
-
"resourceTypes": [
|
|
217323
|
-
{
|
|
217324
|
-
"resourceType": "function",
|
|
217325
|
-
"required": true,
|
|
217326
|
-
"conditionKeys": [],
|
|
217327
|
-
"dependentActions": []
|
|
217328
|
-
}
|
|
217329
|
-
]
|
|
217330
|
-
},
|
|
217331
|
-
{
|
|
217332
|
-
"name": "PutResourcePolicy",
|
|
217333
|
-
"apiReferenceUrl": "https://docs.aws.amazon.com/lambda/latest/dg/API_PutResourcePolicy.html",
|
|
217334
|
-
"permissionOnly": false,
|
|
217335
|
-
"description": "Grants permission to update the resource-based policy for an AWS Lambda function, version, or alias",
|
|
217336
|
-
"accessLevel": "Permissions management",
|
|
217337
|
-
"resourceTypes": [
|
|
217338
|
-
{
|
|
217339
|
-
"resourceType": "function",
|
|
217340
|
-
"required": true,
|
|
217341
|
-
"conditionKeys": [],
|
|
217342
|
-
"dependentActions": [
|
|
217343
|
-
"lambda:AddPermission",
|
|
217344
|
-
"lambda:RemovePermission"
|
|
217345
|
-
]
|
|
217346
|
-
}
|
|
217347
|
-
]
|
|
217348
|
-
},
|
|
217349
217563
|
{
|
|
217350
217564
|
"name": "PutRuntimeManagementConfig",
|
|
217351
217565
|
"apiReferenceUrl": "https://docs.aws.amazon.com/lambda/latest/dg/API_PutRuntimeManagementConfig.html",
|
|
@@ -268653,6 +268867,21 @@
|
|
|
268653
268867
|
}
|
|
268654
268868
|
]
|
|
268655
268869
|
},
|
|
268870
|
+
{
|
|
268871
|
+
"name": "DisableAclOnDataSource",
|
|
268872
|
+
"apiReferenceUrl": "${UserGuideDocPage}setting-up.html#DisableAclOnDataSource",
|
|
268873
|
+
"permissionOnly": true,
|
|
268874
|
+
"description": "Grants permission to disable the ACL crawl while creating the Amazon Q Business data source resource",
|
|
268875
|
+
"accessLevel": "Write",
|
|
268876
|
+
"resourceTypes": [
|
|
268877
|
+
{
|
|
268878
|
+
"resourceType": "application",
|
|
268879
|
+
"required": true,
|
|
268880
|
+
"conditionKeys": [],
|
|
268881
|
+
"dependentActions": []
|
|
268882
|
+
}
|
|
268883
|
+
]
|
|
268884
|
+
},
|
|
268656
268885
|
{
|
|
268657
268886
|
"name": "GetApplication",
|
|
268658
268887
|
"apiReferenceUrl": "${APIReferenceDocPage}API_GetApplication.html",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"serviceCount":
|
|
2
|
+
"serviceCount": 423,
|
|
3
3
|
"services": [
|
|
4
4
|
{
|
|
5
5
|
"name": "AWS Account Management",
|
|
@@ -10096,7 +10096,7 @@
|
|
|
10096
10096
|
"name": "AWS Elemental MediaConnect",
|
|
10097
10097
|
"servicePrefix": "mediaconnect",
|
|
10098
10098
|
"authReferenceUrl": "https://docs.aws.amazon.com/service-authorization/latest/reference/list_awselementalmediaconnect.html",
|
|
10099
|
-
"actionsCount":
|
|
10099
|
+
"actionsCount": 55,
|
|
10100
10100
|
"actions": [
|
|
10101
10101
|
"AddBridgeOutputs",
|
|
10102
10102
|
"AddBridgeSources",
|
|
@@ -10114,6 +10114,7 @@
|
|
|
10114
10114
|
"DescribeBridge",
|
|
10115
10115
|
"DescribeFlow",
|
|
10116
10116
|
"DescribeFlowSourceMetadata",
|
|
10117
|
+
"DescribeFlowSourceThumbnail",
|
|
10117
10118
|
"DescribeGateway",
|
|
10118
10119
|
"DescribeGatewayInstance",
|
|
10119
10120
|
"DescribeOffering",
|
|
@@ -10723,6 +10724,38 @@
|
|
|
10723
10724
|
"aws:TagKeys"
|
|
10724
10725
|
]
|
|
10725
10726
|
},
|
|
10727
|
+
{
|
|
10728
|
+
"name": "AWS End User Messaging Social",
|
|
10729
|
+
"servicePrefix": "social-messaging",
|
|
10730
|
+
"authReferenceUrl": "https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsendusermessagingsocial.html",
|
|
10731
|
+
"actionsCount": 13,
|
|
10732
|
+
"actions": [
|
|
10733
|
+
"AssociateWhatsAppBusinessAccount",
|
|
10734
|
+
"DeleteWhatsAppMessageMedia",
|
|
10735
|
+
"DisassociateWhatsAppBusinessAccount",
|
|
10736
|
+
"GetLinkedWhatsAppBusinessAccount",
|
|
10737
|
+
"GetLinkedWhatsAppBusinessAccountPhoneNumber",
|
|
10738
|
+
"GetWhatsAppMessageMedia",
|
|
10739
|
+
"ListLinkedWhatsAppBusinessAccounts",
|
|
10740
|
+
"ListTagsForResource",
|
|
10741
|
+
"PostWhatsAppMessageMedia",
|
|
10742
|
+
"PutWhatsAppBusinessAccountEventDestinations",
|
|
10743
|
+
"SendWhatsAppMessage",
|
|
10744
|
+
"TagResource",
|
|
10745
|
+
"UntagResource"
|
|
10746
|
+
],
|
|
10747
|
+
"resourceTypesCount": 2,
|
|
10748
|
+
"resourceTypes": [
|
|
10749
|
+
"phone-number-id",
|
|
10750
|
+
"waba"
|
|
10751
|
+
],
|
|
10752
|
+
"conditionKeysCount": 3,
|
|
10753
|
+
"conditionKeys": [
|
|
10754
|
+
"aws:RequestTag/${TagKey}",
|
|
10755
|
+
"aws:ResourceTag/${TagKey}",
|
|
10756
|
+
"aws:TagKeys"
|
|
10757
|
+
]
|
|
10758
|
+
},
|
|
10726
10759
|
{
|
|
10727
10760
|
"name": "AWS Entity Resolution",
|
|
10728
10761
|
"servicePrefix": "entityresolution",
|
|
@@ -15428,7 +15461,7 @@
|
|
|
15428
15461
|
"name": "AWS Lambda",
|
|
15429
15462
|
"servicePrefix": "lambda",
|
|
15430
15463
|
"authReferenceUrl": "https://docs.aws.amazon.com/service-authorization/latest/reference/list_awslambda.html",
|
|
15431
|
-
"actionsCount":
|
|
15464
|
+
"actionsCount": 70,
|
|
15432
15465
|
"actions": [
|
|
15433
15466
|
"AddLayerVersionPermission",
|
|
15434
15467
|
"AddPermission",
|
|
@@ -15447,7 +15480,6 @@
|
|
|
15447
15480
|
"DeleteFunctionUrlConfig",
|
|
15448
15481
|
"DeleteLayerVersion",
|
|
15449
15482
|
"DeleteProvisionedConcurrencyConfig",
|
|
15450
|
-
"DeleteResourcePolicy",
|
|
15451
15483
|
"DisableReplication",
|
|
15452
15484
|
"EnableReplication",
|
|
15453
15485
|
"GetAccountSettings",
|
|
@@ -15465,8 +15497,6 @@
|
|
|
15465
15497
|
"GetLayerVersionPolicy",
|
|
15466
15498
|
"GetPolicy",
|
|
15467
15499
|
"GetProvisionedConcurrencyConfig",
|
|
15468
|
-
"GetPublicAccessBlockConfig",
|
|
15469
|
-
"GetResourcePolicy",
|
|
15470
15500
|
"GetRuntimeManagementConfig",
|
|
15471
15501
|
"InvokeAsync",
|
|
15472
15502
|
"InvokeFunction",
|
|
@@ -15490,8 +15520,6 @@
|
|
|
15490
15520
|
"PutFunctionEventInvokeConfig",
|
|
15491
15521
|
"PutFunctionRecursionConfig",
|
|
15492
15522
|
"PutProvisionedConcurrencyConfig",
|
|
15493
|
-
"PutPublicAccessBlockConfig",
|
|
15494
|
-
"PutResourcePolicy",
|
|
15495
15523
|
"PutRuntimeManagementConfig",
|
|
15496
15524
|
"RemoveLayerVersionPermission",
|
|
15497
15525
|
"RemovePermission",
|
|
@@ -19672,7 +19700,7 @@
|
|
|
19672
19700
|
"name": "Amazon Q Business",
|
|
19673
19701
|
"servicePrefix": "qbusiness",
|
|
19674
19702
|
"authReferenceUrl": "https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonqbusiness.html",
|
|
19675
|
-
"actionsCount":
|
|
19703
|
+
"actionsCount": 66,
|
|
19676
19704
|
"actions": [
|
|
19677
19705
|
"AddUserLicenses",
|
|
19678
19706
|
"BatchDeleteDocument",
|
|
@@ -19699,6 +19727,7 @@
|
|
|
19699
19727
|
"DeleteRetriever",
|
|
19700
19728
|
"DeleteUser",
|
|
19701
19729
|
"DeleteWebExperience",
|
|
19730
|
+
"DisableAclOnDataSource",
|
|
19702
19731
|
"GetApplication",
|
|
19703
19732
|
"GetChatControlsConfiguration",
|
|
19704
19733
|
"GetDataSource",
|
|
@@ -2,19 +2,19 @@
|
|
|
2
2
|
"Actions by type": [
|
|
3
3
|
{
|
|
4
4
|
"key": "Read Actions",
|
|
5
|
-
"value":
|
|
5
|
+
"value": 4662
|
|
6
6
|
},
|
|
7
7
|
{
|
|
8
8
|
"key": "List Actions",
|
|
9
|
-
"value":
|
|
9
|
+
"value": 2817
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
12
|
"key": "Permissions Actions",
|
|
13
|
-
"value":
|
|
13
|
+
"value": 296
|
|
14
14
|
},
|
|
15
15
|
{
|
|
16
16
|
"key": "Write Actions",
|
|
17
|
-
"value":
|
|
17
|
+
"value": 9606
|
|
18
18
|
}
|
|
19
19
|
],
|
|
20
20
|
"Longest action names": [
|
|
@@ -161,16 +161,16 @@
|
|
|
161
161
|
"value": 82
|
|
162
162
|
},
|
|
163
163
|
{
|
|
164
|
-
"key": "
|
|
164
|
+
"key": "application - arn:${Partition}:qbusiness:${Region}:${Account}:application/${ApplicationId}",
|
|
165
165
|
"value": 81
|
|
166
166
|
},
|
|
167
167
|
{
|
|
168
|
-
"key": "
|
|
168
|
+
"key": "bot - arn:${Partition}:lex:${Region}:${Account}:bot/${BotId}",
|
|
169
169
|
"value": 81
|
|
170
170
|
},
|
|
171
171
|
{
|
|
172
|
-
"key": "
|
|
173
|
-
"value":
|
|
172
|
+
"key": "repository - arn:${Partition}:codecommit:${Region}:${Account}:${RepositoryName}",
|
|
173
|
+
"value": 81
|
|
174
174
|
},
|
|
175
175
|
{
|
|
176
176
|
"key": "stack - arn:${Partition}:opsworks:${Region}:${Account}:stack/${StackId}/",
|
|
@@ -398,7 +398,7 @@
|
|
|
398
398
|
"Summary": [
|
|
399
399
|
{
|
|
400
400
|
"key": "Total number of services",
|
|
401
|
-
"value":
|
|
401
|
+
"value": 423
|
|
402
402
|
},
|
|
403
403
|
{
|
|
404
404
|
"key": "Average number of actions per service",
|
|
@@ -406,11 +406,11 @@
|
|
|
406
406
|
},
|
|
407
407
|
{
|
|
408
408
|
"key": "Median number of actions per service",
|
|
409
|
-
"value":
|
|
409
|
+
"value": 27
|
|
410
410
|
},
|
|
411
411
|
{
|
|
412
412
|
"key": "Total number of distinct resource ARNS",
|
|
413
|
-
"value":
|
|
413
|
+
"value": 1774
|
|
414
414
|
},
|
|
415
415
|
{
|
|
416
416
|
"key": "Total number of distinct condition keys",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aws-iam-data",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.284",
|
|
4
4
|
"description": "Provides AWS IAM data gathered from the official AWS IAM docs as a convenient npm package that can be used in other OSS projects.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|