@cloud-copilot/iam-data 0.21.202608071 → 0.21.202608131
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/data/actions/account-access.json +164 -0
- package/data/actions/agent-registry.json +302 -0
- package/data/actions/backup.json +90 -34
- package/data/actions/bedrock-agentcore.json +228 -0
- package/data/actions/cleanrooms.json +45 -0
- package/data/actions/connect.json +162 -0
- package/data/actions/datazone.json +8 -0
- package/data/actions/dms.json +98 -22
- package/data/actions/dynamodb.json +21 -0
- package/data/actions/eks.json +6 -0
- package/data/actions/elasticmapreduce.json +92 -0
- package/data/actions/iam.json +12 -6
- package/data/actions/quicksight.json +213 -49
- package/data/actions/securityagent.json +6 -0
- package/data/actions/securityhub.json +15 -0
- package/data/actions/transform-custom.json +34 -0
- package/data/actions/workspaces.json +45 -0
- package/data/categories/machine-learning-and-ai.json +1 -0
- package/data/categories/security-identity-and-compliance.json +1 -0
- package/data/conditionKeys/account-access.json +17 -0
- package/data/conditionKeys/agent-registry.json +17 -0
- package/data/conditionKeys/airflow.json +2 -2
- package/data/conditionKeys/autoscaling.json +5 -0
- package/data/conditionKeys/bedrock-agentcore.json +6 -1
- package/data/conditionKeys/eks.json +15 -0
- package/data/rcpSupportedServices.json +2 -0
- package/data/resourceTypes/account-access.json +9 -0
- package/data/resourceTypes/agent-registry.json +16 -0
- package/data/resourceTypes/backup.json +7 -0
- package/data/resourceTypes/bedrock-agentcore.json +7 -0
- package/data/resourceTypes/connect.json +14 -0
- package/data/resourceTypes/elasticmapreduce.json +8 -0
- package/data/resourceTypes/quicksight.json +7 -0
- package/data/serviceCategories.json +2 -0
- package/data/serviceNames.json +2 -0
- package/data/services.json +2 -0
- package/package.json +2 -2
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"registry": {
|
|
3
|
+
"key": "registry",
|
|
4
|
+
"arn": "arn:${Partition}:agent-registry:${Region}:${Account}:registry/${RegistryId}",
|
|
5
|
+
"conditionKeys": [
|
|
6
|
+
"aws:ResourceTag/${TagKey}"
|
|
7
|
+
]
|
|
8
|
+
},
|
|
9
|
+
"registry-record": {
|
|
10
|
+
"key": "registry-record",
|
|
11
|
+
"arn": "arn:${Partition}:agent-registry:${Region}:${Account}:registry/${RegistryId}/record/${RecordId}",
|
|
12
|
+
"conditionKeys": [
|
|
13
|
+
"aws:ResourceTag/${TagKey}"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
+
"backupaccesspoint": {
|
|
3
|
+
"key": "backupAccessPoint",
|
|
4
|
+
"arn": "arn:${Partition}:backup:${Region}:${Account}:accesspoint/${AccessPointName}",
|
|
5
|
+
"conditionKeys": [
|
|
6
|
+
"aws:ResourceTag/${TagKey}"
|
|
7
|
+
]
|
|
8
|
+
},
|
|
2
9
|
"backupplan": {
|
|
3
10
|
"key": "backupPlan",
|
|
4
11
|
"arn": "arn:${Partition}:backup:${Region}:${Account}:backup-plan:${BackupPlanId}",
|
|
@@ -38,6 +38,13 @@
|
|
|
38
38
|
"aws:ResourceTag/${TagKey}"
|
|
39
39
|
]
|
|
40
40
|
},
|
|
41
|
+
"capacity-provider": {
|
|
42
|
+
"key": "capacity-provider",
|
|
43
|
+
"arn": "arn:${Partition}:bedrock-agentcore:${Region}:${Account}:capacity-provider/${CapacityProviderId}",
|
|
44
|
+
"conditionKeys": [
|
|
45
|
+
"aws:ResourceTag/${TagKey}"
|
|
46
|
+
]
|
|
47
|
+
},
|
|
41
48
|
"code-interpreter": {
|
|
42
49
|
"key": "code-interpreter",
|
|
43
50
|
"arn": "arn:${Partition}:bedrock-agentcore:${Region}:aws:code-interpreter/${CodeInterpreterId}"
|
|
@@ -126,6 +126,13 @@
|
|
|
126
126
|
"key": "legacy-phone-number",
|
|
127
127
|
"arn": "arn:${Partition}:connect:${Region}:${Account}:instance/${InstanceId}/phone-number/${PhoneNumberId}"
|
|
128
128
|
},
|
|
129
|
+
"metric": {
|
|
130
|
+
"key": "metric",
|
|
131
|
+
"arn": "arn:${Partition}:connect:${Region}:${Account}:instance/${InstanceId}/metric/${MetricId}",
|
|
132
|
+
"conditionKeys": [
|
|
133
|
+
"aws:ResourceTag/${TagKey}"
|
|
134
|
+
]
|
|
135
|
+
},
|
|
129
136
|
"notification": {
|
|
130
137
|
"key": "notification",
|
|
131
138
|
"arn": "arn:${Partition}:connect:${Region}:${Account}:instance/${InstanceId}/notification/${NotificationId}",
|
|
@@ -158,6 +165,13 @@
|
|
|
158
165
|
"aws:ResourceTag/${TagKey}"
|
|
159
166
|
]
|
|
160
167
|
},
|
|
168
|
+
"qualified-metric": {
|
|
169
|
+
"key": "qualified-metric",
|
|
170
|
+
"arn": "arn:${Partition}:connect:${Region}:${Account}:instance/${InstanceId}/metric/${MetricId}:${MetricQualifier}",
|
|
171
|
+
"conditionKeys": [
|
|
172
|
+
"aws:ResourceTag/${TagKey}"
|
|
173
|
+
]
|
|
174
|
+
},
|
|
161
175
|
"queue": {
|
|
162
176
|
"key": "queue",
|
|
163
177
|
"arn": "arn:${Partition}:connect:${Region}:${Account}:instance/${InstanceId}/queue/${QueueId}",
|
|
@@ -23,6 +23,14 @@
|
|
|
23
23
|
"elasticmapreduce:ResourceTag/${TagKey}"
|
|
24
24
|
]
|
|
25
25
|
},
|
|
26
|
+
"session": {
|
|
27
|
+
"key": "session",
|
|
28
|
+
"arn": "arn:${Partition}:elasticmapreduce:${Region}:${Account}:cluster/${ClusterId}/session/${SessionId}",
|
|
29
|
+
"conditionKeys": [
|
|
30
|
+
"aws:ResourceTag/${TagKey}",
|
|
31
|
+
"elasticmapreduce:ResourceTag/${TagKey}"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
26
34
|
"studio": {
|
|
27
35
|
"key": "studio",
|
|
28
36
|
"arn": "arn:${Partition}:elasticmapreduce:${Region}:${Account}:studio/${StudioId}",
|
|
@@ -105,6 +105,13 @@
|
|
|
105
105
|
"aws:ResourceTag/${TagKey}"
|
|
106
106
|
]
|
|
107
107
|
},
|
|
108
|
+
"dlpsetting": {
|
|
109
|
+
"key": "dlpSetting",
|
|
110
|
+
"arn": "arn:${Partition}:quicksight:${Region}:${Account}:dlpsetting/${ResourceId}",
|
|
111
|
+
"conditionKeys": [
|
|
112
|
+
"aws:ResourceTag/${TagKey}"
|
|
113
|
+
]
|
|
114
|
+
},
|
|
108
115
|
"emailcustomizationtemplate": {
|
|
109
116
|
"key": "emailCustomizationTemplate",
|
|
110
117
|
"arn": "arn:${Partition}:quicksight:${Region}:${Account}:email-customization-template/${ResourceId}",
|
|
@@ -3,11 +3,13 @@
|
|
|
3
3
|
"a4b": "business-applications",
|
|
4
4
|
"access-analyzer": "security-identity-and-compliance",
|
|
5
5
|
"account": "management-and-governance",
|
|
6
|
+
"account-access": "security-identity-and-compliance",
|
|
6
7
|
"acm": "security-identity-and-compliance",
|
|
7
8
|
"acm-pca": "security-identity-and-compliance",
|
|
8
9
|
"aco-automation": "compute",
|
|
9
10
|
"action-recommendations": "management-and-governance",
|
|
10
11
|
"activate": "compute",
|
|
12
|
+
"agent-registry": "machine-learning-and-ai",
|
|
11
13
|
"agentaccess-mcp": "end-user-computing",
|
|
12
14
|
"aidevops": "machine-learning-and-ai",
|
|
13
15
|
"aiops": "machine-learning-and-ai",
|
package/data/serviceNames.json
CHANGED
|
@@ -3,11 +3,13 @@
|
|
|
3
3
|
"a4b": "Alexa for Business",
|
|
4
4
|
"access-analyzer": "AWS IAM Access Analyzer",
|
|
5
5
|
"account": "AWS Account Management",
|
|
6
|
+
"account-access": "Account access manager",
|
|
6
7
|
"acm": "AWS Certificate Manager",
|
|
7
8
|
"acm-pca": "AWS Private Certificate Authority",
|
|
8
9
|
"aco-automation": "AWS Compute Optimizer Automation",
|
|
9
10
|
"action-recommendations": "AWS Action Recommendations",
|
|
10
11
|
"activate": "AWS Activate",
|
|
12
|
+
"agent-registry": "AWS Agent Registry",
|
|
11
13
|
"agentaccess-mcp": "Amazon WorkSpaces AgentAccess MCP Server",
|
|
12
14
|
"aidevops": "AWS DevOps Agent Service",
|
|
13
15
|
"aiops": "Amazon AI Operations",
|
package/data/services.json
CHANGED
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloud-copilot/iam-data",
|
|
3
|
-
"version": "0.21.
|
|
3
|
+
"version": "0.21.202608131",
|
|
4
4
|
"description": "AWS IAM Data",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/cloud-copilot/iam-data.git"
|
|
8
8
|
},
|
|
9
|
-
"updatedAt": "2026-08-
|
|
9
|
+
"updatedAt": "2026-08-13T12:37:29.007Z",
|
|
10
10
|
"exports": {
|
|
11
11
|
".": {
|
|
12
12
|
"import": "./dist/esm/index.js",
|