@cloud-copilot/iam-data 0.9.202411261 → 0.9.202412101

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 (77) hide show
  1. package/data/actions/aiops.json +384 -0
  2. package/data/actions/aoss.json +1 -0
  3. package/data/actions/bedrock.json +576 -2
  4. package/data/actions/chime.json +95 -1
  5. package/data/actions/cleanrooms.json +1 -0
  6. package/data/actions/config.json +146 -14
  7. package/data/actions/connect-campaigns.json +15 -0
  8. package/data/actions/connect.json +40 -1
  9. package/data/actions/datazone.json +0 -5
  10. package/data/actions/dsql.json +191 -0
  11. package/data/actions/ec2.json +446 -13
  12. package/data/actions/eks.json +8 -2
  13. package/data/actions/es.json +99 -3
  14. package/data/actions/glue.json +75 -0
  15. package/data/actions/imagebuilder.json +15 -0
  16. package/data/actions/invoicing.json +136 -0
  17. package/data/actions/logs.json +32 -0
  18. package/data/actions/memorydb.json +162 -0
  19. package/data/actions/networkflowmonitor.json +393 -0
  20. package/data/actions/observabilityadmin.json +66 -0
  21. package/data/actions/opensearch.json +60 -0
  22. package/data/actions/partnercentral.json +256 -0
  23. package/data/actions/qapps.json +0 -4
  24. package/data/actions/qbusiness.json +377 -0
  25. package/data/actions/quicksight.json +79 -0
  26. package/data/actions/redshift-serverless.json +8 -0
  27. package/data/actions/redshift.json +16 -0
  28. package/data/actions/rekognition.json +58 -11
  29. package/data/actions/s3.json +71 -0
  30. package/data/actions/s3tables.json +461 -0
  31. package/data/actions/sagemaker-data-science-assistant.json +11 -0
  32. package/data/actions/sagemaker.json +371 -9
  33. package/data/actions/security-ir.json +344 -0
  34. package/data/actions/tax.json +0 -4
  35. package/data/actions/transfer.json +127 -0
  36. package/data/actions/vpc-lattice.json +423 -44
  37. package/data/actions/vpce.json +11 -0
  38. package/data/conditionKeys/aiops.json +17 -0
  39. package/data/conditionKeys/bedrock.json +5 -0
  40. package/data/conditionKeys/config.json +5 -0
  41. package/data/conditionKeys/dsql.json +22 -0
  42. package/data/conditionKeys/ec2.json +15 -0
  43. package/data/conditionKeys/eks.json +15 -0
  44. package/data/conditionKeys/invoicing.json +17 -1
  45. package/data/conditionKeys/networkflowmonitor.json +17 -0
  46. package/data/conditionKeys/observabilityadmin.json +1 -0
  47. package/data/conditionKeys/s3express.json +5 -0
  48. package/data/conditionKeys/s3tables.json +12 -0
  49. package/data/conditionKeys/sagemaker-data-science-assistant.json +1 -0
  50. package/data/conditionKeys/security-ir.json +17 -0
  51. package/data/conditionKeys/vpc-lattice.json +10 -0
  52. package/data/conditionKeys/vpce.json +1 -0
  53. package/data/resourceTypes/aiops.json +9 -0
  54. package/data/resourceTypes/bedrock.json +27 -0
  55. package/data/resourceTypes/config.json +7 -0
  56. package/data/resourceTypes/dsql.json +9 -0
  57. package/data/resourceTypes/ec2.json +37 -1
  58. package/data/resourceTypes/es.json +7 -0
  59. package/data/resourceTypes/invoicing.json +9 -1
  60. package/data/resourceTypes/memorydb.json +12 -0
  61. package/data/resourceTypes/networkflowmonitor.json +16 -0
  62. package/data/resourceTypes/observabilityadmin.json +1 -0
  63. package/data/resourceTypes/opensearch.json +4 -0
  64. package/data/resourceTypes/partnercentral.json +12 -0
  65. package/data/resourceTypes/personalize.json +3 -3
  66. package/data/resourceTypes/qbusiness.json +14 -0
  67. package/data/resourceTypes/rekognition.json +8 -2
  68. package/data/resourceTypes/s3tables.json +14 -0
  69. package/data/resourceTypes/sagemaker-data-science-assistant.json +1 -0
  70. package/data/resourceTypes/sagemaker.json +32 -0
  71. package/data/resourceTypes/security-ir.json +16 -0
  72. package/data/resourceTypes/transfer.json +7 -0
  73. package/data/resourceTypes/vpc-lattice.json +76 -35
  74. package/data/resourceTypes/vpce.json +1 -0
  75. package/data/serviceNames.json +8 -0
  76. package/data/services.json +8 -0
  77. package/package.json +2 -2
@@ -0,0 +1,11 @@
1
+ {
2
+ "allowmultiregion": {
3
+ "name": "AllowMultiRegion",
4
+ "isPermissionOnly": true,
5
+ "description": "Grants permission to manage multi-region VPC endpoints and VPC endpoint service configurations",
6
+ "accessLevel": "Write",
7
+ "resourceTypes": [],
8
+ "conditionKeys": [],
9
+ "dependentActions": []
10
+ }
11
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "aws:requesttag/${tagkey}": {
3
+ "key": "aws:RequestTag/${TagKey}",
4
+ "description": "Filters access by the tags that are passed in the request",
5
+ "type": "String"
6
+ },
7
+ "aws:resourcetag/${tagkey}": {
8
+ "key": "aws:ResourceTag/${TagKey}",
9
+ "description": "Filters access by the tags associated with the resource",
10
+ "type": "String"
11
+ },
12
+ "aws:tagkeys": {
13
+ "key": "aws:TagKeys",
14
+ "description": "Filters access by the tag keys that are passed in the request",
15
+ "type": "ArrayOfString"
16
+ }
17
+ }
@@ -19,6 +19,11 @@
19
19
  "description": "Filters access by the specified inference profile",
20
20
  "type": "ARN"
21
21
  },
22
+ "bedrock:promptrouterarn": {
23
+ "key": "bedrock:PromptRouterArn",
24
+ "description": "Filters access by the specified prompt router",
25
+ "type": "ARN"
26
+ },
22
27
  "bedrock:thirdpartyknowledgebasecredentialssecretarn": {
23
28
  "key": "bedrock:ThirdPartyKnowledgeBaseCredentialsSecretArn",
24
29
  "description": "Filters access by the secretArn containing the credentials of the third party platform",
@@ -13,5 +13,10 @@
13
13
  "key": "aws:TagKeys",
14
14
  "description": "Filters access by the presence of mandatory tags in the request",
15
15
  "type": "ArrayOfString"
16
+ },
17
+ "config:configurationrecorderserviceprincipal": {
18
+ "key": "config:ConfigurationRecorderServicePrincipal",
19
+ "description": "Filters access by service principal of the configuration recorder",
20
+ "type": "String"
16
21
  }
17
22
  }
@@ -0,0 +1,22 @@
1
+ {
2
+ "aws:requesttag/${tagkey}": {
3
+ "key": "aws:RequestTag/${TagKey}",
4
+ "description": "Filters access by a tag key and value pair that is allowed in the request",
5
+ "type": "String"
6
+ },
7
+ "aws:resourcetag/${tagkey}": {
8
+ "key": "aws:ResourceTag/${TagKey}",
9
+ "description": "Filters access by the tags associated with the resource",
10
+ "type": "String"
11
+ },
12
+ "aws:tagkeys": {
13
+ "key": "aws:TagKeys",
14
+ "description": "Filters access by a list of tag keys that are allowed in the request",
15
+ "type": "ArrayOfString"
16
+ },
17
+ "dsql:witnessregion": {
18
+ "key": "dsql:WitnessRegion",
19
+ "description": "Filters access by the witness region of linked clusters",
20
+ "type": "ArrayOfString"
21
+ }
22
+ }
@@ -643,5 +643,20 @@
643
643
  "key": "ec2:transitGatewayRouteTableId",
644
644
  "description": "Filters access by the ID of a transit gateway route table",
645
645
  "type": "String"
646
+ },
647
+ "ec2:vpcemultiregion": {
648
+ "key": "ec2:vpceMultiRegion",
649
+ "description": "Filters access by multi region of the VPC endpoint service",
650
+ "type": "String"
651
+ },
652
+ "ec2:vpceserviceregion": {
653
+ "key": "ec2:vpceServiceRegion",
654
+ "description": "Filters access by the region of the VPC endpoint service",
655
+ "type": "String"
656
+ },
657
+ "ec2:vpcesupportedregion": {
658
+ "key": "ec2:vpceSupportedRegion",
659
+ "description": "Filters access by the supported region of the VPC endpoint service",
660
+ "type": "String"
646
661
  }
647
662
  }
@@ -29,6 +29,11 @@
29
29
  "description": "Filters access by the authenticationMode present in the create / update cluster request",
30
30
  "type": "String"
31
31
  },
32
+ "eks:blockstorageenabled": {
33
+ "key": "eks:blockStorageEnabled",
34
+ "description": "Filters access by the block storage enabled parameter in the create / update cluster request",
35
+ "type": "Bool"
36
+ },
32
37
  "eks:bootstrapclustercreatoradminpermissions": {
33
38
  "key": "eks:bootstrapClusterCreatorAdminPermissions",
34
39
  "description": "Filters access by the bootstrapClusterCreatorAdminPermissions present in the create cluster request",
@@ -49,6 +54,16 @@
49
54
  "description": "Filters access by the clusterName present in the access entry requests the user makes to the EKS service",
50
55
  "type": "String"
51
56
  },
57
+ "eks:computeconfigenabled": {
58
+ "key": "eks:computeConfigEnabled",
59
+ "description": "Filters access by the compute config enabled parameter in the create / update cluster request",
60
+ "type": "Bool"
61
+ },
62
+ "eks:elasticloadbalancingenabled": {
63
+ "key": "eks:elasticLoadBalancingEnabled",
64
+ "description": "Filters access by the elastic load balancing enabled parameter in the create / update cluster request",
65
+ "type": "Bool"
66
+ },
52
67
  "eks:issuerurl": {
53
68
  "key": "eks:issuerUrl",
54
69
  "description": "Filters access by the issuerUrl present in the associateIdentityProviderConfig request the user makes to the EKS service",
@@ -1 +1,17 @@
1
- {}
1
+ {
2
+ "aws:requesttag/${tagkey}": {
3
+ "key": "aws:RequestTag/${TagKey}",
4
+ "description": "Filters access by allowed set of values for each of the tags",
5
+ "type": "String"
6
+ },
7
+ "aws:resourcetag/${tagkey}": {
8
+ "key": "aws:ResourceTag/${TagKey}",
9
+ "description": "Filters access by tag-value associated with the resource",
10
+ "type": "String"
11
+ },
12
+ "aws:tagkeys": {
13
+ "key": "aws:TagKeys",
14
+ "description": "Filters access by presence of mandatory tags in the request",
15
+ "type": "ArrayOfString"
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "aws:requesttag/${tagkey}": {
3
+ "key": "aws:RequestTag/${TagKey}",
4
+ "description": "Filters access by the tag key-value pairs in the request",
5
+ "type": "String"
6
+ },
7
+ "aws:resourcetag/${tagkey}": {
8
+ "key": "aws:ResourceTag/${TagKey}",
9
+ "description": "Filters access by the tag key-value pairs attached to the resource",
10
+ "type": "String"
11
+ },
12
+ "aws:tagkeys": {
13
+ "key": "aws:TagKeys",
14
+ "description": "Filters access by the tag keys in the request",
15
+ "type": "ArrayOfString"
16
+ }
17
+ }
@@ -1,4 +1,9 @@
1
1
  {
2
+ "s3express:allaccessrestrictedtolocalzonegroup": {
3
+ "key": "s3express:AllAccessRestrictedToLocalZoneGroup",
4
+ "description": "Filters all access to the bucket unless the request originates from the AWS Local Zone network border group(s) provided in this condition key",
5
+ "type": "String"
6
+ },
2
7
  "s3express:locationname": {
3
8
  "key": "s3express:LocationName",
4
9
  "description": "Filters access by a specific Availability Zone ID",
@@ -0,0 +1,12 @@
1
+ {
2
+ "s3tables:namespace": {
3
+ "key": "s3tables:namespace",
4
+ "description": "Filters access by the namespaces created in the table bucket",
5
+ "type": "String"
6
+ },
7
+ "s3tables:tablename": {
8
+ "key": "s3tables:tableName",
9
+ "description": "Filters access by the name of the tables in the table bucket",
10
+ "type": "String"
11
+ }
12
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "aws:requesttag/${tagkey}": {
3
+ "key": "aws:RequestTag/${TagKey}",
4
+ "description": "Filters access by the tags that are passed in the request",
5
+ "type": "String"
6
+ },
7
+ "aws:resourcetag/${tagkey}": {
8
+ "key": "aws:ResourceTag/${TagKey}",
9
+ "description": "Filters access by the tags associated with the resource",
10
+ "type": "String"
11
+ },
12
+ "aws:tagkeys": {
13
+ "key": "aws:TagKeys",
14
+ "description": "Filters access by the tag keys that are passed in the request",
15
+ "type": "ArrayOfString"
16
+ }
17
+ }
@@ -24,6 +24,11 @@
24
24
  "description": "Filters access by the protocol specified in the request",
25
25
  "type": "String"
26
26
  },
27
+ "vpc-lattice:resourceconfigurationarn": {
28
+ "key": "vpc-lattice:ResourceConfigurationArn",
29
+ "description": "Filters access by the ARN of a resource configuration",
30
+ "type": "ARN"
31
+ },
27
32
  "vpc-lattice:securitygroupids": {
28
33
  "key": "vpc-lattice:SecurityGroupIds",
29
34
  "description": "Filters access by the IDs of security groups",
@@ -44,6 +49,11 @@
44
49
  "description": "Filters access by the ARNs of target groups",
45
50
  "type": "ArrayOfARN"
46
51
  },
52
+ "vpc-lattice:vpcendpointid": {
53
+ "key": "vpc-lattice:VpcEndpointId",
54
+ "description": "Filters access by the ID of a VPC endpoint",
55
+ "type": "String"
56
+ },
47
57
  "vpc-lattice:vpcid": {
48
58
  "key": "vpc-lattice:VpcId",
49
59
  "description": "Filters access by the ID of a virtual private cloud (VPC)",
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1,9 @@
1
+ {
2
+ "investigation-group": {
3
+ "key": "investigation-group",
4
+ "arn": "arn:${Partition}:aiops:${Region}:${Account}:investigation-group/${InvestigationGroupId}",
5
+ "conditionKeys": [
6
+ "aws:ResourceTag/${TagKey}"
7
+ ]
8
+ }
9
+ }
@@ -3,10 +3,21 @@
3
3
  "key": "foundation-model",
4
4
  "arn": "arn:${Partition}:bedrock:${Region}::foundation-model/${ResourceId}"
5
5
  },
6
+ "async-invoke": {
7
+ "key": "async-invoke",
8
+ "arn": "arn:${Partition}:bedrock:${Region}:${Account}:async-invoke/${ResourceId}",
9
+ "conditionKeys": [
10
+ "aws:ResourceTag/${TagKey}"
11
+ ]
12
+ },
6
13
  "inference-profile": {
7
14
  "key": "inference-profile",
8
15
  "arn": "arn:${Partition}:bedrock:${Region}:${Account}:inference-profile/${ResourceId}"
9
16
  },
17
+ "default-prompt-router": {
18
+ "key": "default-prompt-router",
19
+ "arn": "arn:${Partition}:bedrock:${Region}:${Account}:default-prompt-router/${ResourceId}"
20
+ },
10
21
  "application-inference-profile": {
11
22
  "key": "application-inference-profile",
12
23
  "arn": "arn:${Partition}:bedrock:${Region}:${Account}:application-inference-profile/${ResourceId}",
@@ -132,5 +143,21 @@
132
143
  "conditionKeys": [
133
144
  "aws:ResourceTag/${TagKey}"
134
145
  ]
146
+ },
147
+ "bedrock-marketplace-model-endpoint": {
148
+ "key": "bedrock-marketplace-model-endpoint",
149
+ "arn": "arn:${Partition}:bedrock:${Region}:${Account}:marketplace/model-endpoint/all-access"
150
+ },
151
+ "data-automation-project": {
152
+ "key": "data-automation-project",
153
+ "arn": "arn:${Partition}:bedrock:${Region}:${Account}:data-automation-project/${ProjectId}"
154
+ },
155
+ "blueprint": {
156
+ "key": "blueprint",
157
+ "arn": "arn:${Partition}:bedrock:${Region}:${Account}:blueprint/${BlueprintId}"
158
+ },
159
+ "data-automation-invocation-job": {
160
+ "key": "data-automation-invocation-job",
161
+ "arn": "arn:${Partition}:bedrock:${Region}:${Account}:data-automation-invocation/${JobId}"
135
162
  }
136
163
  }
@@ -51,5 +51,12 @@
51
51
  "conditionKeys": [
52
52
  "aws:ResourceTag/${TagKey}"
53
53
  ]
54
+ },
55
+ "configurationrecorder": {
56
+ "key": "ConfigurationRecorder",
57
+ "arn": "arn:${Partition}:config:${Region}:${Account}:configuration-recorder/${RecorderName}/${RecorderId}",
58
+ "conditionKeys": [
59
+ "aws:ResourceTag/${TagKey}"
60
+ ]
54
61
  }
55
62
  }
@@ -0,0 +1,9 @@
1
+ {
2
+ "cluster": {
3
+ "key": "Cluster",
4
+ "arn": "arn:${Partition}:dsql:${Region}:${Account}:cluster/${Identifier}",
5
+ "conditionKeys": [
6
+ "aws:ResourceTag/${TagKey}"
7
+ ]
8
+ }
9
+ }
@@ -105,6 +105,17 @@
105
105
  "ec2:ResourceTag/${TagKey}"
106
106
  ]
107
107
  },
108
+ "declarative-policies-report": {
109
+ "key": "declarative-policies-report",
110
+ "arn": "arn:${Partition}:ec2:${Region}:${Account}:declarative-policies-report/${DeclarativePoliciesReportId}",
111
+ "conditionKeys": [
112
+ "aws:RequestTag/${TagKey}",
113
+ "aws:ResourceTag/${TagKey}",
114
+ "aws:TagKeys",
115
+ "ec2:Region",
116
+ "ec2:ResourceTag/${TagKey}"
117
+ ]
118
+ },
108
119
  "dedicated-host": {
109
120
  "key": "dedicated-host",
110
121
  "arn": "arn:${Partition}:ec2:${Region}:${Account}:dedicated-host/${DedicatedHostId}",
@@ -977,6 +988,17 @@
977
988
  "ec2:ResourceTag/${TagKey}"
978
989
  ]
979
990
  },
991
+ "verified-access-endpoint-target": {
992
+ "key": "verified-access-endpoint-target",
993
+ "arn": "arn:${Partition}:ec2:${Region}:${Account}:verified-access-endpoint-target/${VerifiedAccessEndpointTargetId}",
994
+ "conditionKeys": [
995
+ "aws:RequestTag/${TagKey}",
996
+ "aws:ResourceTag/${TagKey}",
997
+ "aws:TagKeys",
998
+ "ec2:Region",
999
+ "ec2:ResourceTag/${TagKey}"
1000
+ ]
1001
+ },
980
1002
  "verified-access-group": {
981
1003
  "key": "verified-access-group",
982
1004
  "arn": "arn:${Partition}:ec2:${Region}:${Account}:verified-access-group/${VerifiedAccessGroupId}",
@@ -1046,6 +1068,17 @@
1046
1068
  "ec2:VolumeType"
1047
1069
  ]
1048
1070
  },
1071
+ "vpc-block-public-access-exclusion": {
1072
+ "key": "vpc-block-public-access-exclusion",
1073
+ "arn": "arn:${Partition}:ec2:${Region}:${Account}:vpc-block-public-access-exclusion/${VpcBlockPublicAccessExclusionId}",
1074
+ "conditionKeys": [
1075
+ "aws:RequestTag/${TagKey}",
1076
+ "aws:ResourceTag/${TagKey}",
1077
+ "aws:TagKeys",
1078
+ "ec2:Region",
1079
+ "ec2:ResourceTag/${TagKey}"
1080
+ ]
1081
+ },
1049
1082
  "vpc-endpoint-connection": {
1050
1083
  "key": "vpc-endpoint-connection",
1051
1084
  "arn": "arn:${Partition}:ec2:${Region}:${Account}:vpc-endpoint-connection/${VpcEndpointConnectionId}",
@@ -1083,7 +1116,10 @@
1083
1116
  "ec2:Attribute/${AttributeName}",
1084
1117
  "ec2:Region",
1085
1118
  "ec2:ResourceTag/${TagKey}",
1086
- "ec2:VpceServicePrivateDnsName"
1119
+ "ec2:VpceServicePrivateDnsName",
1120
+ "ec2:vpceMultiRegion",
1121
+ "ec2:vpceServiceRegion",
1122
+ "ec2:vpceSupportedRegion"
1087
1123
  ]
1088
1124
  },
1089
1125
  "vpc-endpoint-service-permission": {
@@ -26,5 +26,12 @@
26
26
  "conditionKeys": [
27
27
  "aws:ResourceTag/${TagKey}"
28
28
  ]
29
+ },
30
+ "datasource": {
31
+ "key": "datasource",
32
+ "arn": "arn:${Partition}:opensearch:${Region}:${Account}:datasource/${DataSourceName}",
33
+ "conditionKeys": [
34
+ "aws:ResourceTag/${TagKey}"
35
+ ]
29
36
  }
30
37
  }
@@ -1 +1,9 @@
1
- {}
1
+ {
2
+ "invoice-unit": {
3
+ "key": "invoice-unit",
4
+ "arn": "arn:${Partition}:invoicing::${Account}:invoice-unit/${Identifier}",
5
+ "conditionKeys": [
6
+ "aws:ResourceTag/${TagKey}"
7
+ ]
8
+ }
9
+ }
@@ -1,4 +1,8 @@
1
1
  {
2
+ "multiregionparametergroup": {
3
+ "key": "multiregionparametergroup",
4
+ "arn": "arn:${Partition}:memorydb::${Account}:multiregionparametergroup/${MultiRegionParameterGroupName}"
5
+ },
2
6
  "parametergroup": {
3
7
  "key": "parametergroup",
4
8
  "arn": "arn:${Partition}:memorydb:${Region}:${Account}:parametergroup/${ParameterGroupName}",
@@ -13,6 +17,14 @@
13
17
  "aws:ResourceTag/${TagKey}"
14
18
  ]
15
19
  },
20
+ "multiregioncluster": {
21
+ "key": "multiregioncluster",
22
+ "arn": "arn:${Partition}:memorydb::${Account}:multiregioncluster/${ClusterName}",
23
+ "conditionKeys": [
24
+ "aws:ResourceTag/${TagKey}",
25
+ "memorydb:TLSEnabled"
26
+ ]
27
+ },
16
28
  "cluster": {
17
29
  "key": "cluster",
18
30
  "arn": "arn:${Partition}:memorydb:${Region}:${Account}:cluster/${ClusterName}",
@@ -0,0 +1,16 @@
1
+ {
2
+ "monitor": {
3
+ "key": "monitor",
4
+ "arn": "arn:${Partition}:networkflowmonitor:${Region}:${Account}:monitor/${MonitorName}",
5
+ "conditionKeys": [
6
+ "aws:ResourceTag/${TagKey}"
7
+ ]
8
+ },
9
+ "scope": {
10
+ "key": "scope",
11
+ "arn": "arn:${Partition}:networkflowmonitor:${Region}:${Account}:scope/${ScopeId}",
12
+ "conditionKeys": [
13
+ "aws:ResourceTag/${TagKey}"
14
+ ]
15
+ }
16
+ }
@@ -2,5 +2,9 @@
2
2
  "application": {
3
3
  "key": "application",
4
4
  "arn": "arn:${Partition}:opensearch:${Region}:${Account}:application/${AppId}"
5
+ },
6
+ "datasource": {
7
+ "key": "datasource",
8
+ "arn": "arn:${Partition}:opensearch:${Region}:${Account}:datasource/${DataSourceName}"
5
9
  }
6
10
  }
@@ -1,4 +1,8 @@
1
1
  {
2
+ "engagement": {
3
+ "key": "Engagement",
4
+ "arn": "arn:${Partition}:partnercentral:${Region}::catalog/${Catalog}/engagement/${Identifier}"
5
+ },
2
6
  "engagement-by-accepting-invitation-task": {
3
7
  "key": "engagement-by-accepting-invitation-task",
4
8
  "arn": "arn:${Partition}:partnercentral:${Region}::catalog/${Catalog}/engagement-by-accepting-invitation-task/${TaskId}"
@@ -15,6 +19,14 @@
15
19
  "key": "Opportunity",
16
20
  "arn": "arn:${Partition}:partnercentral:${Region}:${Account}:catalog/${Catalog}/opportunity/${Identifier}"
17
21
  },
22
+ "resource-snapshot-job": {
23
+ "key": "resource-snapshot-job",
24
+ "arn": "arn:${Partition}:partnercentral:${Region}:${Account}:catalog/${Catalog}/resource-snapshot-job/${Identifier}"
25
+ },
26
+ "resourcesnapshot": {
27
+ "key": "ResourceSnapshot",
28
+ "arn": "arn:${Partition}:partnercentral:${Region}:${Account}:catalog/${Catalog}/engagement/${EngagementIdentifier}/resource/${ResourceType}/${ResourceIdentifier}/template/${TemplateIdentifier}/resource-snapshot/${SnapshotRevision}"
29
+ },
18
30
  "solution": {
19
31
  "key": "Solution",
20
32
  "arn": "arn:${Partition}:partnercentral:${Region}:${Account}:catalog/${Catalog}/solution/${Identifier}"
@@ -5,7 +5,7 @@
5
5
  },
6
6
  "featuretransformation": {
7
7
  "key": "featureTransformation",
8
- "arn": "arn:${Partition}:personalize:${Region}:${Account}:feature-transformation/${ResourceId}"
8
+ "arn": "arn:${Partition}:personalize:::feature-transformation/${ResourceId}"
9
9
  },
10
10
  "dataset": {
11
11
  "key": "dataset",
@@ -45,11 +45,11 @@
45
45
  },
46
46
  "recipe": {
47
47
  "key": "recipe",
48
- "arn": "arn:${Partition}:personalize:${Region}:${Account}:recipe/${ResourceId}"
48
+ "arn": "arn:${Partition}:personalize:::recipe/${ResourceId}"
49
49
  },
50
50
  "algorithm": {
51
51
  "key": "algorithm",
52
- "arn": "arn:${Partition}:personalize:${Region}:${Account}:algorithm/${ResourceId}"
52
+ "arn": "arn:${Partition}:personalize:::algorithm/${ResourceId}"
53
53
  },
54
54
  "batchinferencejob": {
55
55
  "key": "batchInferenceJob",
@@ -6,6 +6,13 @@
6
6
  "aws:ResourceTag/${TagKey}"
7
7
  ]
8
8
  },
9
+ "integration": {
10
+ "key": "integration",
11
+ "arn": "arn:${Partition}:qbusiness:${Region}:${Account}:application/${ApplicationId}/integration/${IntegrationId}",
12
+ "conditionKeys": [
13
+ "aws:ResourceTag/${TagKey}"
14
+ ]
15
+ },
9
16
  "retriever": {
10
17
  "key": "retriever",
11
18
  "arn": "arn:${Partition}:qbusiness:${Region}:${Account}:application/${ApplicationId}/retriever/${RetrieverId}",
@@ -48,5 +55,12 @@
48
55
  "subscription": {
49
56
  "key": "subscription",
50
57
  "arn": "arn:${Partition}:qbusiness:${Region}:${Account}:application/${ApplicationId}/subscription/${SubscriptionId}"
58
+ },
59
+ "data-accessor": {
60
+ "key": "data-accessor",
61
+ "arn": "arn:${Partition}:qbusiness:${Region}:${Account}:application/${ApplicationId}/data-accessor/${DataAccessorId}",
62
+ "conditionKeys": [
63
+ "aws:ResourceTag/${TagKey}"
64
+ ]
51
65
  }
52
66
  }
@@ -15,7 +15,10 @@
15
15
  },
16
16
  "project": {
17
17
  "key": "project",
18
- "arn": "arn:${Partition}:rekognition:${Region}:${Account}:project/${ProjectName}/${CreationTimestamp}"
18
+ "arn": "arn:${Partition}:rekognition:${Region}:${Account}:project/${ProjectName}/${CreationTimestamp}",
19
+ "conditionKeys": [
20
+ "aws:ResourceTag/${TagKey}"
21
+ ]
19
22
  },
20
23
  "projectversion": {
21
24
  "key": "projectversion",
@@ -26,6 +29,9 @@
26
29
  },
27
30
  "dataset": {
28
31
  "key": "dataset",
29
- "arn": "arn:${Partition}:rekognition:${Region}:${Account}:project/${ProjectName}/dataset/${DatasetType}/${CreationTimestamp}"
32
+ "arn": "arn:${Partition}:rekognition:${Region}:${Account}:project/${ProjectName}/dataset/${DatasetType}/${CreationTimestamp}",
33
+ "conditionKeys": [
34
+ "aws:ResourceTag/${TagKey}"
35
+ ]
30
36
  }
31
37
  }
@@ -0,0 +1,14 @@
1
+ {
2
+ "tablebucket": {
3
+ "key": "TableBucket",
4
+ "arn": "arn:${Partition}:s3tables:${Region}:${Account}:bucket/${TableBucketName}"
5
+ },
6
+ "table": {
7
+ "key": "Table",
8
+ "arn": "arn:${Partition}:s3tables:${Region}:${Account}:bucket/${TableBucketName}/table/${TableID}",
9
+ "conditionKeys": [
10
+ "s3tables:namespace",
11
+ "s3tables:tableName"
12
+ ]
13
+ }
14
+ }
@@ -227,6 +227,22 @@
227
227
  "sagemaker:ResourceTag/${TagKey}"
228
228
  ]
229
229
  },
230
+ "training-plan": {
231
+ "key": "training-plan",
232
+ "arn": "arn:${Partition}:sagemaker:${Region}:${Account}:training-plan/${TrainingPlanName}",
233
+ "conditionKeys": [
234
+ "aws:ResourceTag/${TagKey}",
235
+ "sagemaker:ResourceTag/${TagKey}"
236
+ ]
237
+ },
238
+ "reserved-capacity": {
239
+ "key": "reserved-capacity",
240
+ "arn": "arn:${Partition}:sagemaker:${Region}:${Account}:reserved-capacity/${RandomString}",
241
+ "conditionKeys": [
242
+ "aws:ResourceTag/${TagKey}",
243
+ "sagemaker:ResourceTag/${TagKey}"
244
+ ]
245
+ },
230
246
  "project": {
231
247
  "key": "project",
232
248
  "arn": "arn:${Partition}:sagemaker:${Region}:${Account}:project/${ProjectName}",
@@ -471,6 +487,22 @@
471
487
  "sagemaker:ResourceTag/${TagKey}"
472
488
  ]
473
489
  },
490
+ "compute-quota": {
491
+ "key": "compute-quota",
492
+ "arn": "arn:${Partition}:sagemaker:${Region}:${Account}:compute-quota/${ComputeQuotaId}",
493
+ "conditionKeys": [
494
+ "aws:ResourceTag/${TagKey}",
495
+ "sagemaker:ResourceTag/${TagKey}"
496
+ ]
497
+ },
498
+ "cluster-scheduler-config": {
499
+ "key": "cluster-scheduler-config",
500
+ "arn": "arn:${Partition}:sagemaker:${Region}:${Account}:cluster-scheduler-config/${ClusterSchedulerConfigId}",
501
+ "conditionKeys": [
502
+ "aws:ResourceTag/${TagKey}",
503
+ "sagemaker:ResourceTag/${TagKey}"
504
+ ]
505
+ },
474
506
  "partner-app": {
475
507
  "key": "partner-app",
476
508
  "arn": "arn:${Partition}:sagemaker:${Region}:${Account}:partner-app/${AppId}",
@@ -0,0 +1,16 @@
1
+ {
2
+ "case": {
3
+ "key": "case",
4
+ "arn": "arn:${Partition}:security-ir:${Region}:${Account}:case/${CaseId}",
5
+ "conditionKeys": [
6
+ "aws:ResourceTag/${TagKey}"
7
+ ]
8
+ },
9
+ "membership": {
10
+ "key": "membership",
11
+ "arn": "arn:${Partition}:security-ir:${Region}:${Account}:membership/${MembershipId}",
12
+ "conditionKeys": [
13
+ "aws:ResourceTag/${TagKey}"
14
+ ]
15
+ }
16
+ }