@cloud-copilot/iam-data 0.15.202510281 → 0.15.202511081

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.
Files changed (44) hide show
  1. package/data/actions/aps.json +190 -0
  2. package/data/actions/autoscaling.json +25 -3
  3. package/data/actions/batch.json +28 -18
  4. package/data/actions/bedrock-agentcore.json +8 -17
  5. package/data/actions/bedrock.json +15 -0
  6. package/data/actions/cloudfront.json +71 -88
  7. package/data/actions/cognito-idp.json +75 -0
  8. package/data/actions/connect.json +48 -0
  9. package/data/actions/ec2.json +219 -33
  10. package/data/actions/elasticloadbalancing.json +9 -0
  11. package/data/actions/emr-containers.json +15 -0
  12. package/data/actions/guardduty.json +23 -1
  13. package/data/actions/iotmanagedintegrations.json +15 -0
  14. package/data/actions/kinesis.json +50 -0
  15. package/data/actions/kms.json +4 -1
  16. package/data/actions/lambda.json +2 -1
  17. package/data/actions/mediaconnect.json +83 -10
  18. package/data/actions/profile.json +368 -0
  19. package/data/actions/redshift-serverless.json +2 -2
  20. package/data/actions/rtbfabric.json +116 -12
  21. package/data/actions/s3tables.json +85 -2
  22. package/data/actions/sts.json +34 -0
  23. package/data/actions/support-console.json +18 -0
  24. package/data/actions/support.json +8 -0
  25. package/data/actions/user-subscriptions.json +8 -0
  26. package/data/actions/vpc-lattice.json +81 -0
  27. package/data/conditionKeys/bedrock-agentcore.json +0 -10
  28. package/data/conditionKeys/ec2.json +15 -15
  29. package/data/conditionKeys/lambda.json +5 -0
  30. package/data/conditionKeys/mediaconnect.json +17 -1
  31. package/data/conditionKeys/s3tables.json +20 -0
  32. package/data/conditionKeys/sts.json +10 -0
  33. package/data/conditionKeys/vpc-lattice.json +15 -0
  34. package/data/conditionPatterns.json +3 -0
  35. package/data/resourceTypes/aps.json +9 -0
  36. package/data/resourceTypes/bedrock.json +4 -0
  37. package/data/resourceTypes/ec2.json +19 -5
  38. package/data/resourceTypes/guardduty.json +4 -1
  39. package/data/resourceTypes/mediaconnect.json +16 -4
  40. package/data/resourceTypes/profile.json +14 -0
  41. package/data/resourceTypes/rtbfabric.json +5 -0
  42. package/data/resourceTypes/s3tables.json +7 -1
  43. package/data/resourceTypes/vpc-lattice.json +12 -0
  44. package/package.json +2 -2
@@ -1,19 +1,31 @@
1
1
  {
2
2
  "entitlement": {
3
3
  "key": "Entitlement",
4
- "arn": "arn:${Partition}:mediaconnect:${Region}:${Account}:entitlement:${FlowId}:${EntitlementName}"
4
+ "arn": "arn:${Partition}:mediaconnect:${Region}:${Account}:entitlement:${FlowId}:${EntitlementName}",
5
+ "conditionKeys": [
6
+ "aws:ResourceTag/${TagKey}"
7
+ ]
5
8
  },
6
9
  "flow": {
7
10
  "key": "Flow",
8
- "arn": "arn:${Partition}:mediaconnect:${Region}:${Account}:flow:${FlowId}:${FlowName}"
11
+ "arn": "arn:${Partition}:mediaconnect:${Region}:${Account}:flow:${FlowId}:${FlowName}",
12
+ "conditionKeys": [
13
+ "aws:ResourceTag/${TagKey}"
14
+ ]
9
15
  },
10
16
  "output": {
11
17
  "key": "Output",
12
- "arn": "arn:${Partition}:mediaconnect:${Region}:${Account}:output:${OutputId}:${OutputName}"
18
+ "arn": "arn:${Partition}:mediaconnect:${Region}:${Account}:output:${OutputId}:${OutputName}",
19
+ "conditionKeys": [
20
+ "aws:ResourceTag/${TagKey}"
21
+ ]
13
22
  },
14
23
  "source": {
15
24
  "key": "Source",
16
- "arn": "arn:${Partition}:mediaconnect:${Region}:${Account}:source:${SourceId}:${SourceName}"
25
+ "arn": "arn:${Partition}:mediaconnect:${Region}:${Account}:source:${SourceId}:${SourceName}",
26
+ "conditionKeys": [
27
+ "aws:ResourceTag/${TagKey}"
28
+ ]
17
29
  },
18
30
  "gateway": {
19
31
  "key": "Gateway",
@@ -54,5 +54,19 @@
54
54
  "conditionKeys": [
55
55
  "aws:ResourceTag/${TagKey}"
56
56
  ]
57
+ },
58
+ "recommenders": {
59
+ "key": "recommenders",
60
+ "arn": "arn:${Partition}:profile:${Region}:${Account}:domains/${DomainName}/recommenders/${RecommenderTypeName}",
61
+ "conditionKeys": [
62
+ "aws:ResourceTag/${TagKey}"
63
+ ]
64
+ },
65
+ "domain-object-types": {
66
+ "key": "domain-object-types",
67
+ "arn": "arn:${Partition}:profile:${Region}:${Account}:domains/${DomainName}/domain-object-types/${ObjectTypeName}",
68
+ "conditionKeys": [
69
+ "aws:ResourceTag/${TagKey}"
70
+ ]
57
71
  }
58
72
  }
@@ -3,6 +3,7 @@
3
3
  "key": "InboundExternalLink",
4
4
  "arn": "arn:${Partition}:rtbfabric:${Region}:${Account}:gateway/${GatewayId}/link/${LinkId}",
5
5
  "conditionKeys": [
6
+ "aws:ResourceTag/${TagKey}",
6
7
  "rtbfabric:InboundExternalLinkLinkId",
7
8
  "rtbfabric:ResponderGatewayGatewayId"
8
9
  ]
@@ -11,6 +12,7 @@
11
12
  "key": "Link",
12
13
  "arn": "arn:${Partition}:rtbfabric:${Region}:${Account}:gateway/${GatewayId}/link/${LinkId}",
13
14
  "conditionKeys": [
15
+ "aws:ResourceTag/${TagKey}",
14
16
  "rtbfabric:LinkLinkId",
15
17
  "rtbfabric:RequesterGatewayGatewayId",
16
18
  "rtbfabric:ResponderGatewayGatewayId"
@@ -20,6 +22,7 @@
20
22
  "key": "OutboundExternalLink",
21
23
  "arn": "arn:${Partition}:rtbfabric:${Region}:${Account}:gateway/${GatewayId}/link/${LinkId}",
22
24
  "conditionKeys": [
25
+ "aws:ResourceTag/${TagKey}",
23
26
  "rtbfabric:OutboundExternalLinkLinkId",
24
27
  "rtbfabric:RequesterGatewayGatewayId"
25
28
  ]
@@ -28,6 +31,7 @@
28
31
  "key": "RequesterGateway",
29
32
  "arn": "arn:${Partition}:rtbfabric:${Region}:${Account}:gateway/${GatewayId}",
30
33
  "conditionKeys": [
34
+ "aws:ResourceTag/${TagKey}",
31
35
  "rtbfabric:RequesterGatewayGatewayId"
32
36
  ]
33
37
  },
@@ -35,6 +39,7 @@
35
39
  "key": "ResponderGateway",
36
40
  "arn": "arn:${Partition}:rtbfabric:${Region}:${Account}:gateway/${GatewayId}",
37
41
  "conditionKeys": [
42
+ "aws:ResourceTag/${TagKey}",
38
43
  "rtbfabric:ResponderGatewayGatewayId"
39
44
  ]
40
45
  }
@@ -1,12 +1,18 @@
1
1
  {
2
2
  "tablebucket": {
3
3
  "key": "TableBucket",
4
- "arn": "arn:${Partition}:s3tables:${Region}:${Account}:bucket/${TableBucketName}"
4
+ "arn": "arn:${Partition}:s3tables:${Region}:${Account}:bucket/${TableBucketName}",
5
+ "conditionKeys": [
6
+ "aws:ResourceTag/${TagKey}",
7
+ "s3tables:TableBucketTag/${TagKey}"
8
+ ]
5
9
  },
6
10
  "table": {
7
11
  "key": "Table",
8
12
  "arn": "arn:${Partition}:s3tables:${Region}:${Account}:bucket/${TableBucketName}/table/${TableID}",
9
13
  "conditionKeys": [
14
+ "aws:ResourceTag/${TagKey}",
15
+ "s3tables:TableBucketTag/${TagKey}",
10
16
  "s3tables:namespace",
11
17
  "s3tables:tableName"
12
18
  ]
@@ -8,6 +8,16 @@
8
8
  "aws:TagKeys"
9
9
  ]
10
10
  },
11
+ "domainverification": {
12
+ "key": "DomainVerification",
13
+ "arn": "arn:${Partition}:vpc-lattice:${Region}:${Account}:domainverification/${DomainVerificationId}",
14
+ "conditionKeys": [
15
+ "aws:RequestTag/${TagKey}",
16
+ "aws:ResourceTag/${TagKey}",
17
+ "aws:TagKeys",
18
+ "vpc-lattice:DomainName"
19
+ ]
20
+ },
11
21
  "listener": {
12
22
  "key": "Listener",
13
23
  "arn": "arn:${Partition}:vpc-lattice:${Region}:${Account}:service/${ServiceId}/listener/${ListenerId}",
@@ -108,6 +118,8 @@
108
118
  "aws:RequestTag/${TagKey}",
109
119
  "aws:ResourceTag/${TagKey}",
110
120
  "aws:TagKeys",
121
+ "vpc-lattice:PrivateDnsPreference",
122
+ "vpc-lattice:PrivateDnsSpecifiedDomains",
111
123
  "vpc-lattice:SecurityGroupIds",
112
124
  "vpc-lattice:ServiceNetworkArn",
113
125
  "vpc-lattice:VpcId"
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@cloud-copilot/iam-data",
3
- "version": "0.15.202510281",
3
+ "version": "0.15.202511081",
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-10-28T04:48:09.773Z",
9
+ "updatedAt": "2025-11-08T04:46:41.933Z",
10
10
  "exports": {
11
11
  ".": {
12
12
  "import": "./dist/esm/index.js",