@cloud-copilot/iam-data 0.15.202511261 → 0.15.202512061
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/aidevops.json +489 -0
- package/data/actions/aws-marketplace.json +48 -0
- package/data/actions/aws-mcp.json +26 -0
- package/data/actions/bedrock-agentcore.json +594 -2
- package/data/actions/bedrock-mantle.json +106 -0
- package/data/actions/connect.json +1081 -8
- package/data/actions/datazone.json +16 -0
- package/data/actions/eks.json +108 -0
- package/data/actions/lambda.json +296 -4
- package/data/actions/logs.json +90 -0
- package/data/actions/mediaconnect.json +748 -91
- package/data/actions/observabilityadmin.json +180 -0
- package/data/actions/opensearch.json +40 -0
- package/data/actions/partnercentral-account-management.json +22 -0
- package/data/actions/partnercentral.json +903 -22
- package/data/actions/route53.json +15 -0
- package/data/actions/route53globalresolver.json +700 -0
- package/data/actions/s3.json +1 -0
- package/data/actions/s3tables.json +243 -3
- package/data/actions/s3vectors.json +147 -22
- package/data/actions/sagemaker.json +110 -0
- package/data/actions/securityagent.json +503 -0
- package/data/actions/transform-custom.json +274 -0
- package/data/actions/transform.json +72 -0
- package/data/conditionKeys/aidevops.json +22 -0
- package/data/conditionKeys/aws-mcp.json +1 -0
- package/data/conditionKeys/bedrock-agentcore.json +0 -5
- package/data/conditionKeys/bedrock-mantle.json +17 -0
- package/data/conditionKeys/connect.json +10 -0
- package/data/conditionKeys/observabilityadmin.json +5 -0
- package/data/conditionKeys/partnercentral-account-management.json +12 -1
- package/data/conditionKeys/partnercentral.json +15 -0
- package/data/conditionKeys/route53globalresolver.json +17 -0
- package/data/conditionKeys/s3tables.json +5 -0
- package/data/conditionKeys/s3vectors.json +20 -0
- package/data/conditionKeys/securityagent.json +1 -0
- package/data/conditionKeys/transform-custom.json +17 -0
- package/data/conditionPatterns.json +4 -0
- package/data/resourceTypes/aidevops.json +24 -0
- package/data/resourceTypes/aws-mcp.json +1 -0
- package/data/resourceTypes/bedrock-agentcore.json +20 -0
- package/data/resourceTypes/bedrock-mantle.json +6 -0
- package/data/resourceTypes/connect.json +18 -0
- package/data/resourceTypes/eks.json +7 -0
- package/data/resourceTypes/lambda.json +11 -0
- package/data/resourceTypes/mediaconnect.json +41 -12
- package/data/resourceTypes/observabilityadmin.json +14 -0
- package/data/resourceTypes/partnercentral.json +42 -0
- package/data/resourceTypes/route53globalresolver.json +37 -0
- package/data/resourceTypes/s3vectors.json +10 -2
- package/data/resourceTypes/sagemaker.json +8 -0
- package/data/resourceTypes/securityagent.json +38 -0
- package/data/resourceTypes/transform-custom.json +18 -0
- package/data/serviceNames.json +6 -0
- package/data/services.json +6 -0
- package/package.json +2 -2
|
@@ -42,6 +42,13 @@
|
|
|
42
42
|
"aws:ResourceTag/${TagKey}"
|
|
43
43
|
]
|
|
44
44
|
},
|
|
45
|
+
"data-table": {
|
|
46
|
+
"key": "data-table",
|
|
47
|
+
"arn": "arn:${Partition}:connect:${Region}:${Account}:instance/${InstanceId}/data-table/${DataTableId}",
|
|
48
|
+
"conditionKeys": [
|
|
49
|
+
"aws:ResourceTag/${TagKey}"
|
|
50
|
+
]
|
|
51
|
+
},
|
|
45
52
|
"queue": {
|
|
46
53
|
"key": "queue",
|
|
47
54
|
"arn": "arn:${Partition}:connect:${Region}:${Account}:instance/${InstanceId}/queue/${QueueId}",
|
|
@@ -227,5 +234,16 @@
|
|
|
227
234
|
"conditionKeys": [
|
|
228
235
|
"aws:ResourceTag/${TagKey}"
|
|
229
236
|
]
|
|
237
|
+
},
|
|
238
|
+
"ai-agent": {
|
|
239
|
+
"key": "ai-agent",
|
|
240
|
+
"arn": "arn:${Partition}:wisdom:${Region}:${Account}:ai-agent/${AssistantId}/${AIAgentId}:${Version}"
|
|
241
|
+
},
|
|
242
|
+
"workspace": {
|
|
243
|
+
"key": "workspace",
|
|
244
|
+
"arn": "arn:${Partition}:connect:${Region}:${Account}:instance/${InstanceId}/workspace/${WorkspaceId}",
|
|
245
|
+
"conditionKeys": [
|
|
246
|
+
"aws:ResourceTag/${TagKey}"
|
|
247
|
+
]
|
|
230
248
|
}
|
|
231
249
|
}
|
|
@@ -70,5 +70,12 @@
|
|
|
70
70
|
"conditionKeys": [
|
|
71
71
|
"aws:ResourceTag/${TagKey}"
|
|
72
72
|
]
|
|
73
|
+
},
|
|
74
|
+
"capability": {
|
|
75
|
+
"key": "capability",
|
|
76
|
+
"arn": "arn:${Partition}:eks:${Region}:${Account}:capability/${ClusterName}/${CapabilityType}/${CapabilityName}/${UUID}",
|
|
77
|
+
"conditionKeys": [
|
|
78
|
+
"aws:ResourceTag/${TagKey}"
|
|
79
|
+
]
|
|
73
80
|
}
|
|
74
81
|
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
+
"capacityprovider": {
|
|
3
|
+
"key": "capacityProvider",
|
|
4
|
+
"arn": "arn:${Partition}:lambda:${Region}:${Account}:capacity-provider:${CapacityProviderName}",
|
|
5
|
+
"conditionKeys": [
|
|
6
|
+
"aws:ResourceTag/${TagKey}"
|
|
7
|
+
]
|
|
8
|
+
},
|
|
2
9
|
"code signing config": {
|
|
3
10
|
"key": "code signing config",
|
|
4
11
|
"arn": "arn:${Partition}:lambda:${Region}:${Account}:code-signing-config:${CodeSigningConfigId}",
|
|
@@ -6,6 +13,10 @@
|
|
|
6
13
|
"aws:ResourceTag/${TagKey}"
|
|
7
14
|
]
|
|
8
15
|
},
|
|
16
|
+
"durable execution": {
|
|
17
|
+
"key": "durable execution",
|
|
18
|
+
"arn": "arn:${Partition}:lambda:${Region}:${Account}:function:${FunctionName}:${Version}/durable-execution/${ExecutionName}/${ExecutionId}"
|
|
19
|
+
},
|
|
9
20
|
"eventsourcemapping": {
|
|
10
21
|
"key": "eventSourceMapping",
|
|
11
22
|
"arn": "arn:${Partition}:lambda:${Region}:${Account}:event-source-mapping:${UUID}",
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
+
"bridge": {
|
|
3
|
+
"key": "Bridge",
|
|
4
|
+
"arn": "arn:${Partition}:mediaconnect:${Region}:${Account}:bridge:${BridgeId}:${BridgeName}"
|
|
5
|
+
},
|
|
2
6
|
"entitlement": {
|
|
3
7
|
"key": "Entitlement",
|
|
4
8
|
"arn": "arn:${Partition}:mediaconnect:${Region}:${Account}:entitlement:${FlowId}:${EntitlementName}",
|
|
@@ -13,6 +17,18 @@
|
|
|
13
17
|
"aws:ResourceTag/${TagKey}"
|
|
14
18
|
]
|
|
15
19
|
},
|
|
20
|
+
"gateway": {
|
|
21
|
+
"key": "Gateway",
|
|
22
|
+
"arn": "arn:${Partition}:mediaconnect:${Region}:${Account}:gateway:${GatewayId}:${GatewayName}"
|
|
23
|
+
},
|
|
24
|
+
"gatewayinstance": {
|
|
25
|
+
"key": "GatewayInstance",
|
|
26
|
+
"arn": "arn:${Partition}:mediaconnect:${Region}:${Account}:gateway:${GatewayId}:${GatewayName}:instance:${InstanceId}"
|
|
27
|
+
},
|
|
28
|
+
"offering": {
|
|
29
|
+
"key": "Offering",
|
|
30
|
+
"arn": "arn:${Partition}:mediaconnect:${Region}:offering:${OfferingId}"
|
|
31
|
+
},
|
|
16
32
|
"output": {
|
|
17
33
|
"key": "Output",
|
|
18
34
|
"arn": "arn:${Partition}:mediaconnect:${Region}:${Account}:output:${OutputId}:${OutputName}",
|
|
@@ -20,23 +36,36 @@
|
|
|
20
36
|
"aws:ResourceTag/${TagKey}"
|
|
21
37
|
]
|
|
22
38
|
},
|
|
23
|
-
"
|
|
24
|
-
"key": "
|
|
25
|
-
"arn": "arn:${Partition}:mediaconnect:${Region}:${Account}:
|
|
39
|
+
"reservation": {
|
|
40
|
+
"key": "Reservation",
|
|
41
|
+
"arn": "arn:${Partition}:mediaconnect:${Region}:${Account}:reservation:${ReservationId}:${ReservationName}"
|
|
42
|
+
},
|
|
43
|
+
"routerinput": {
|
|
44
|
+
"key": "RouterInput",
|
|
45
|
+
"arn": "arn:${Partition}:mediaconnect:${Region}:${Account}:routerInput:${RouterInputId}",
|
|
26
46
|
"conditionKeys": [
|
|
27
47
|
"aws:ResourceTag/${TagKey}"
|
|
28
48
|
]
|
|
29
49
|
},
|
|
30
|
-
"
|
|
31
|
-
"key": "
|
|
32
|
-
"arn": "arn:${Partition}:mediaconnect:${Region}:${Account}:
|
|
50
|
+
"routernetworkinterface": {
|
|
51
|
+
"key": "RouterNetworkInterface",
|
|
52
|
+
"arn": "arn:${Partition}:mediaconnect:${Region}:${Account}:routerNetworkInterface:${RouterNetworkInterfaceId}",
|
|
53
|
+
"conditionKeys": [
|
|
54
|
+
"aws:ResourceTag/${TagKey}"
|
|
55
|
+
]
|
|
33
56
|
},
|
|
34
|
-
"
|
|
35
|
-
"key": "
|
|
36
|
-
"arn": "arn:${Partition}:mediaconnect:${Region}:${Account}:
|
|
57
|
+
"routeroutput": {
|
|
58
|
+
"key": "RouterOutput",
|
|
59
|
+
"arn": "arn:${Partition}:mediaconnect:${Region}:${Account}:routerOutput:${RouterOutputId}",
|
|
60
|
+
"conditionKeys": [
|
|
61
|
+
"aws:ResourceTag/${TagKey}"
|
|
62
|
+
]
|
|
37
63
|
},
|
|
38
|
-
"
|
|
39
|
-
"key": "
|
|
40
|
-
"arn": "arn:${Partition}:mediaconnect:${Region}:${Account}:
|
|
64
|
+
"source": {
|
|
65
|
+
"key": "Source",
|
|
66
|
+
"arn": "arn:${Partition}:mediaconnect:${Region}:${Account}:source:${SourceId}:${SourceName}",
|
|
67
|
+
"conditionKeys": [
|
|
68
|
+
"aws:ResourceTag/${TagKey}"
|
|
69
|
+
]
|
|
41
70
|
}
|
|
42
71
|
}
|
|
@@ -19,5 +19,19 @@
|
|
|
19
19
|
"conditionKeys": [
|
|
20
20
|
"aws:ResourceTag/${TagKey}"
|
|
21
21
|
]
|
|
22
|
+
},
|
|
23
|
+
"telemetry-pipeline": {
|
|
24
|
+
"key": "telemetry-pipeline",
|
|
25
|
+
"arn": "arn:${Partition}:observabilityadmin:${Region}:${Account}:telemetry-pipeline/${TelemetryPipelineIdentifier}",
|
|
26
|
+
"conditionKeys": [
|
|
27
|
+
"aws:ResourceTag/${TagKey}"
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
"s3tableintegration": {
|
|
31
|
+
"key": "s3tableintegration",
|
|
32
|
+
"arn": "arn:${Partition}:observabilityadmin:${Region}:${Account}:s3tableintegration/${S3TableIntegrationIdentifier}",
|
|
33
|
+
"conditionKeys": [
|
|
34
|
+
"aws:ResourceTag/${TagKey}"
|
|
35
|
+
]
|
|
22
36
|
}
|
|
23
37
|
}
|
|
@@ -37,6 +37,44 @@
|
|
|
37
37
|
"key": "Solution",
|
|
38
38
|
"arn": "arn:${Partition}:partnercentral:${Region}:${Account}:catalog/${Catalog}/solution/${Identifier}"
|
|
39
39
|
},
|
|
40
|
+
"partner": {
|
|
41
|
+
"key": "Partner",
|
|
42
|
+
"arn": "arn:${Partition}:partnercentral:${Region}:${Account}:catalog/${Catalog}/partner/${Identifier}",
|
|
43
|
+
"conditionKeys": [
|
|
44
|
+
"aws:ResourceTag/${TagKey}"
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
|
+
"connection": {
|
|
48
|
+
"key": "Connection",
|
|
49
|
+
"arn": "arn:${Partition}:partnercentral:${Region}::catalog/${Catalog}/connection/${Identifier}"
|
|
50
|
+
},
|
|
51
|
+
"connectioninvitation": {
|
|
52
|
+
"key": "ConnectionInvitation",
|
|
53
|
+
"arn": "arn:${Partition}:partnercentral:${Region}::catalog/${Catalog}/connection-invitation/${Identifier}"
|
|
54
|
+
},
|
|
55
|
+
"connectionpreferences": {
|
|
56
|
+
"key": "ConnectionPreferences",
|
|
57
|
+
"arn": "arn:${Partition}:partnercentral:${Region}:${Account}:catalog/${Catalog}/connection-preferences"
|
|
58
|
+
},
|
|
59
|
+
"opportunityfromengagementtask": {
|
|
60
|
+
"key": "OpportunityFromEngagementTask",
|
|
61
|
+
"arn": "arn:${Partition}:partnercentral:${Region}::catalog/${Catalog}/opportunity-from-engagement-task/${TaskId}"
|
|
62
|
+
},
|
|
63
|
+
"benefit": {
|
|
64
|
+
"key": "Benefit",
|
|
65
|
+
"arn": "arn:${Partition}:partnercentral:${Region}::catalog/${Catalog}/benefit/${Identifier}"
|
|
66
|
+
},
|
|
67
|
+
"benefitallocation": {
|
|
68
|
+
"key": "BenefitAllocation",
|
|
69
|
+
"arn": "arn:${Partition}:partnercentral:${Region}:${Account}:catalog/${Catalog}/benefit-allocation/${Identifier}"
|
|
70
|
+
},
|
|
71
|
+
"benefitapplication": {
|
|
72
|
+
"key": "BenefitApplication",
|
|
73
|
+
"arn": "arn:${Partition}:partnercentral:${Region}:${Account}:catalog/${Catalog}/benefit-application/${Identifier}",
|
|
74
|
+
"conditionKeys": [
|
|
75
|
+
"aws:ResourceTag/${TagKey}"
|
|
76
|
+
]
|
|
77
|
+
},
|
|
40
78
|
"programmanagementaccount": {
|
|
41
79
|
"key": "ProgramManagementAccount",
|
|
42
80
|
"arn": "arn:${Partition}:partnercentral:${Region}:${Account}:catalog/${Catalog}/program-management-account/${Identifier}",
|
|
@@ -57,5 +95,9 @@
|
|
|
57
95
|
"conditionKeys": [
|
|
58
96
|
"aws:ResourceTag/${TagKey}"
|
|
59
97
|
]
|
|
98
|
+
},
|
|
99
|
+
"dashboard": {
|
|
100
|
+
"key": "Dashboard",
|
|
101
|
+
"arn": "arn:${Partition}:partnercentral::${Account}:catalog/${Catalog}/ReportingData/${TableId}/Dashboard/${DashboardId}"
|
|
60
102
|
}
|
|
61
103
|
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"access-source": {
|
|
3
|
+
"key": "access-source",
|
|
4
|
+
"arn": "arn:${Partition}:route53globalresolver::${Account}:access-source/${Id}",
|
|
5
|
+
"conditionKeys": [
|
|
6
|
+
"aws:ResourceTag/${TagKey}"
|
|
7
|
+
]
|
|
8
|
+
},
|
|
9
|
+
"access-token": {
|
|
10
|
+
"key": "access-token",
|
|
11
|
+
"arn": "arn:${Partition}:route53globalresolver::${Account}:access-token/${Id}",
|
|
12
|
+
"conditionKeys": [
|
|
13
|
+
"aws:ResourceTag/${TagKey}"
|
|
14
|
+
]
|
|
15
|
+
},
|
|
16
|
+
"dns-view": {
|
|
17
|
+
"key": "dns-view",
|
|
18
|
+
"arn": "arn:${Partition}:route53globalresolver::${Account}:dns-view/${Id}",
|
|
19
|
+
"conditionKeys": [
|
|
20
|
+
"aws:ResourceTag/${TagKey}"
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
"firewall-domain-list": {
|
|
24
|
+
"key": "firewall-domain-list",
|
|
25
|
+
"arn": "arn:${Partition}:route53globalresolver::${Account}:firewall-domain-list/${Id}",
|
|
26
|
+
"conditionKeys": [
|
|
27
|
+
"aws:ResourceTag/${TagKey}"
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
"global-resolver": {
|
|
31
|
+
"key": "global-resolver",
|
|
32
|
+
"arn": "arn:${Partition}:route53globalresolver::${Account}:global-resolver/${Id}",
|
|
33
|
+
"conditionKeys": [
|
|
34
|
+
"aws:ResourceTag/${TagKey}"
|
|
35
|
+
]
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -1,10 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"index": {
|
|
3
3
|
"key": "Index",
|
|
4
|
-
"arn": "arn:${Partition}:s3vectors:${Region}:${Account}:bucket/${BucketName}/index/${IndexName}"
|
|
4
|
+
"arn": "arn:${Partition}:s3vectors:${Region}:${Account}:bucket/${BucketName}/index/${IndexName}",
|
|
5
|
+
"conditionKeys": [
|
|
6
|
+
"aws:ResourceTag/${TagKey}",
|
|
7
|
+
"s3vectors:VectorBucketTag/${TagKey}"
|
|
8
|
+
]
|
|
5
9
|
},
|
|
6
10
|
"vectorbucket": {
|
|
7
11
|
"key": "VectorBucket",
|
|
8
|
-
"arn": "arn:${Partition}:s3vectors:${Region}:${Account}:bucket/${BucketName}"
|
|
12
|
+
"arn": "arn:${Partition}:s3vectors:${Region}:${Account}:bucket/${BucketName}",
|
|
13
|
+
"conditionKeys": [
|
|
14
|
+
"aws:ResourceTag/${TagKey}",
|
|
15
|
+
"s3vectors:VectorBucketTag/${TagKey}"
|
|
16
|
+
]
|
|
9
17
|
}
|
|
10
18
|
}
|
|
@@ -502,6 +502,14 @@
|
|
|
502
502
|
"sagemaker:ResourceTag/${TagKey}"
|
|
503
503
|
]
|
|
504
504
|
},
|
|
505
|
+
"mlflow-app": {
|
|
506
|
+
"key": "mlflow-app",
|
|
507
|
+
"arn": "arn:${Partition}:sagemaker:${Region}:${Account}:mlflow-app/${MLflowAppId}",
|
|
508
|
+
"conditionKeys": [
|
|
509
|
+
"aws:ResourceTag/${TagKey}",
|
|
510
|
+
"sagemaker:ResourceTag/${TagKey}"
|
|
511
|
+
]
|
|
512
|
+
},
|
|
505
513
|
"compute-quota": {
|
|
506
514
|
"key": "compute-quota",
|
|
507
515
|
"arn": "arn:${Partition}:sagemaker:${Region}:${Account}:compute-quota/${ComputeQuotaId}",
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"application": {
|
|
3
|
+
"key": "Application",
|
|
4
|
+
"arn": "arn:${Partition}:securityagent:${Region}:${Account}:application/${ApplicationId}"
|
|
5
|
+
},
|
|
6
|
+
"control": {
|
|
7
|
+
"key": "Control",
|
|
8
|
+
"arn": "arn:${Partition}:securityagent:${Region}:${Account}:control/${ControlId}"
|
|
9
|
+
},
|
|
10
|
+
"integration": {
|
|
11
|
+
"key": "Integration",
|
|
12
|
+
"arn": "arn:${Partition}:securityagent:${Region}:${Account}:integration/${IntegrationId}"
|
|
13
|
+
},
|
|
14
|
+
"agentinstance": {
|
|
15
|
+
"key": "AgentInstance",
|
|
16
|
+
"arn": "arn:${Partition}:securityagent:${Region}:${Account}:agent-instance/${AgentId}"
|
|
17
|
+
},
|
|
18
|
+
"artifact": {
|
|
19
|
+
"key": "Artifact",
|
|
20
|
+
"arn": "arn:${Partition}:securityagent:${Region}:${Account}:agent-instance/${AgentId}/artifact/${ArtifactId}"
|
|
21
|
+
},
|
|
22
|
+
"pentest": {
|
|
23
|
+
"key": "Pentest",
|
|
24
|
+
"arn": "arn:${Partition}:securityagent:${Region}:${Account}:agent-instance/${AgentId}/pentest/${PentestId}"
|
|
25
|
+
},
|
|
26
|
+
"pentestjob": {
|
|
27
|
+
"key": "PentestJob",
|
|
28
|
+
"arn": "arn:${Partition}:securityagent:${Region}:${Account}:agent-instance/${AgentId}/pentest-job/${JobId}"
|
|
29
|
+
},
|
|
30
|
+
"pentesttask": {
|
|
31
|
+
"key": "PentestTask",
|
|
32
|
+
"arn": "arn:${Partition}:securityagent:${Region}:${Account}:agent-instance/${AgentId}/pentest-task/${TaskId}"
|
|
33
|
+
},
|
|
34
|
+
"finding": {
|
|
35
|
+
"key": "Finding",
|
|
36
|
+
"arn": "arn:${Partition}:securityagent:${Region}:${Account}:agent-instance/${AgentId}/finding/${FindingId}"
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"campaign": {
|
|
3
|
+
"key": "campaign",
|
|
4
|
+
"arn": "arn:${Partition}:transform-custom:${Region}:${Account}:campaign/${Name}"
|
|
5
|
+
},
|
|
6
|
+
"conversation": {
|
|
7
|
+
"key": "conversation",
|
|
8
|
+
"arn": "arn:${Partition}:transform-custom:${Region}:${Account}:conversation/${ConversationId}"
|
|
9
|
+
},
|
|
10
|
+
"knowledge-item": {
|
|
11
|
+
"key": "knowledge-item",
|
|
12
|
+
"arn": "arn:${Partition}:transform-custom:${Region}:${Account}:package/${TransformationPackageName}/knowledge-item/${Id}"
|
|
13
|
+
},
|
|
14
|
+
"package": {
|
|
15
|
+
"key": "package",
|
|
16
|
+
"arn": "arn:${Partition}:transform-custom:${Region}:${Account}:package/${Name}"
|
|
17
|
+
}
|
|
18
|
+
}
|
package/data/serviceNames.json
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
"acm-pca": "AWS Private Certificate Authority",
|
|
8
8
|
"action-recommendations": "AWS Action Recommendations",
|
|
9
9
|
"activate": "AWS Activate",
|
|
10
|
+
"aidevops": "AWS DevOps Agent Service",
|
|
10
11
|
"aiops": "Amazon AI Operations",
|
|
11
12
|
"airflow": "Amazon Managed Workflows for Apache Airflow",
|
|
12
13
|
"airflow-serverless": "AWS MWAA Serverless",
|
|
@@ -41,6 +42,7 @@
|
|
|
41
42
|
"autoscaling-plans": "AWS Auto Scaling",
|
|
42
43
|
"aws-marketplace": "AWS Marketplace Catalog",
|
|
43
44
|
"aws-marketplace-management": "AWS Marketplace Management Portal",
|
|
45
|
+
"aws-mcp": "AWS MCP Server",
|
|
44
46
|
"aws-portal": "AWS Billing Console",
|
|
45
47
|
"awsconnector": "AWS Connector Service",
|
|
46
48
|
"b2bi": "AWS B2B Data Interchange",
|
|
@@ -55,6 +57,7 @@
|
|
|
55
57
|
"bcm-recommended-actions": "AWS Billing And Cost Management Recommended Actions",
|
|
56
58
|
"bedrock": "Amazon Bedrock",
|
|
57
59
|
"bedrock-agentcore": "Amazon Bedrock Agentcore",
|
|
60
|
+
"bedrock-mantle": "Amazon Bedrock Powered by AWS Mantle",
|
|
58
61
|
"billing": "AWS Billing",
|
|
59
62
|
"billingconductor": "AWS Billing Conductor",
|
|
60
63
|
"braket": "Amazon Braket",
|
|
@@ -333,6 +336,7 @@
|
|
|
333
336
|
"route53-recovery-control-config": "Amazon Route 53 Recovery Controls",
|
|
334
337
|
"route53-recovery-readiness": "Amazon Route 53 Recovery Readiness",
|
|
335
338
|
"route53domains": "Amazon Route 53 Domains",
|
|
339
|
+
"route53globalresolver": "AWS Route53 Global Resolver",
|
|
336
340
|
"route53profiles": "Amazon Route 53 Profiles",
|
|
337
341
|
"route53resolver": "Amazon Route 53 Resolver",
|
|
338
342
|
"rtbfabric": "AWS RTB Fabric",
|
|
@@ -355,6 +359,7 @@
|
|
|
355
359
|
"sdb": "Amazon SimpleDB",
|
|
356
360
|
"secretsmanager": "AWS Secrets Manager",
|
|
357
361
|
"security-ir": "AWS Security Incident Response",
|
|
362
|
+
"securityagent": "AWS Security Agent",
|
|
358
363
|
"securityhub": "AWS Security Hub",
|
|
359
364
|
"securitylake": "Amazon Security Lake",
|
|
360
365
|
"serverlessrepo": "AWS Serverless Application Repository",
|
|
@@ -406,6 +411,7 @@
|
|
|
406
411
|
"transcribe": "Amazon Transcribe",
|
|
407
412
|
"transfer": "AWS Transfer Family",
|
|
408
413
|
"transform": "AWS Transform",
|
|
414
|
+
"transform-custom": "AWS Transform Custom",
|
|
409
415
|
"translate": "Amazon Translate",
|
|
410
416
|
"trustedadvisor": "AWS Trusted Advisor",
|
|
411
417
|
"ts": "AWS Diagnostic tools",
|
package/data/services.json
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
"acm-pca",
|
|
8
8
|
"action-recommendations",
|
|
9
9
|
"activate",
|
|
10
|
+
"aidevops",
|
|
10
11
|
"aiops",
|
|
11
12
|
"airflow",
|
|
12
13
|
"airflow-serverless",
|
|
@@ -41,6 +42,7 @@
|
|
|
41
42
|
"autoscaling-plans",
|
|
42
43
|
"aws-marketplace",
|
|
43
44
|
"aws-marketplace-management",
|
|
45
|
+
"aws-mcp",
|
|
44
46
|
"aws-portal",
|
|
45
47
|
"awsconnector",
|
|
46
48
|
"b2bi",
|
|
@@ -55,6 +57,7 @@
|
|
|
55
57
|
"bcm-recommended-actions",
|
|
56
58
|
"bedrock",
|
|
57
59
|
"bedrock-agentcore",
|
|
60
|
+
"bedrock-mantle",
|
|
58
61
|
"billing",
|
|
59
62
|
"billingconductor",
|
|
60
63
|
"braket",
|
|
@@ -333,6 +336,7 @@
|
|
|
333
336
|
"route53-recovery-control-config",
|
|
334
337
|
"route53-recovery-readiness",
|
|
335
338
|
"route53domains",
|
|
339
|
+
"route53globalresolver",
|
|
336
340
|
"route53profiles",
|
|
337
341
|
"route53resolver",
|
|
338
342
|
"rtbfabric",
|
|
@@ -355,6 +359,7 @@
|
|
|
355
359
|
"sdb",
|
|
356
360
|
"secretsmanager",
|
|
357
361
|
"security-ir",
|
|
362
|
+
"securityagent",
|
|
358
363
|
"securityhub",
|
|
359
364
|
"securitylake",
|
|
360
365
|
"serverlessrepo",
|
|
@@ -406,6 +411,7 @@
|
|
|
406
411
|
"transcribe",
|
|
407
412
|
"transfer",
|
|
408
413
|
"transform",
|
|
414
|
+
"transform-custom",
|
|
409
415
|
"translate",
|
|
410
416
|
"trustedadvisor",
|
|
411
417
|
"ts",
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloud-copilot/iam-data",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.202512061",
|
|
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": "2025-
|
|
9
|
+
"updatedAt": "2025-12-06T04:47:37.991Z",
|
|
10
10
|
"exports": {
|
|
11
11
|
".": {
|
|
12
12
|
"import": "./dist/esm/index.js",
|