terraconstructs 0.0.11 → 0.0.13

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 (411) hide show
  1. package/.jsii +105205 -35113
  2. package/lib/aws/arn.js +1 -1
  3. package/lib/aws/aws-construct.d.ts +1 -1
  4. package/lib/aws/aws-construct.js +28 -2
  5. package/lib/aws/aws-stack.d.ts +2 -4
  6. package/lib/aws/aws-stack.js +21 -8
  7. package/lib/aws/aws-tags.d.ts +58 -0
  8. package/lib/aws/aws-tags.js +77 -0
  9. package/lib/aws/cloudwatch/actions/ec2.js +1 -1
  10. package/lib/aws/cloudwatch/actions/lambda.js +1 -1
  11. package/lib/aws/cloudwatch/alarm-base.js +1 -1
  12. package/lib/aws/cloudwatch/alarm-rule.js +1 -1
  13. package/lib/aws/cloudwatch/alarm-status-widget.js +1 -1
  14. package/lib/aws/cloudwatch/alarm.js +1 -1
  15. package/lib/aws/cloudwatch/composite-alarm.js +1 -1
  16. package/lib/aws/cloudwatch/dashboard.js +1 -1
  17. package/lib/aws/cloudwatch/data-protection-policy.js +3 -3
  18. package/lib/aws/cloudwatch/graph.js +8 -8
  19. package/lib/aws/cloudwatch/layout.js +3 -3
  20. package/lib/aws/cloudwatch/log-destinations/kinesis.js +1 -1
  21. package/lib/aws/cloudwatch/log-destinations/lambda.js +1 -1
  22. package/lib/aws/cloudwatch/log-group.js +1 -1
  23. package/lib/aws/cloudwatch/log-query.js +1 -1
  24. package/lib/aws/cloudwatch/log-stream.js +1 -1
  25. package/lib/aws/cloudwatch/metric-filter.d.ts +1 -1
  26. package/lib/aws/cloudwatch/metric-filter.js +4 -4
  27. package/lib/aws/cloudwatch/metric.js +2 -2
  28. package/lib/aws/cloudwatch/pattern.js +3 -3
  29. package/lib/aws/cloudwatch/policy.js +1 -1
  30. package/lib/aws/cloudwatch/private/env-tokens.js +5 -6
  31. package/lib/aws/cloudwatch/private/metric-util.js +4 -5
  32. package/lib/aws/cloudwatch/private/object.js +2 -3
  33. package/lib/aws/cloudwatch/private/rendering.js +3 -3
  34. package/lib/aws/cloudwatch/private/statistic.js +6 -7
  35. package/lib/aws/cloudwatch/query-definition.js +2 -2
  36. package/lib/aws/cloudwatch/stats.js +1 -1
  37. package/lib/aws/cloudwatch/subscription-filter.d.ts +1 -1
  38. package/lib/aws/cloudwatch/subscription-filter.js +4 -4
  39. package/lib/aws/cloudwatch/text.js +1 -1
  40. package/lib/aws/cloudwatch/variable.js +3 -3
  41. package/lib/aws/cloudwatch/widget.d.ts +1 -1
  42. package/lib/aws/cloudwatch/widget.js +4 -4
  43. package/lib/aws/compute/activity.js +3 -2
  44. package/lib/aws/compute/alb/application-listener-action.d.ts +334 -0
  45. package/lib/aws/compute/alb/application-listener-action.js +281 -0
  46. package/lib/aws/compute/alb/application-listener-certificate.d.ts +35 -0
  47. package/lib/aws/compute/alb/application-listener-certificate.js +35 -0
  48. package/lib/aws/compute/alb/application-listener-rule.d.ts +233 -0
  49. package/lib/aws/compute/alb/application-listener-rule.js +220 -0
  50. package/lib/aws/compute/alb/application-listener.d.ts +574 -0
  51. package/lib/aws/compute/alb/application-listener.js +538 -0
  52. package/lib/aws/compute/alb/application-load-balancer.d.ts +715 -0
  53. package/lib/aws/compute/alb/application-load-balancer.js +780 -0
  54. package/lib/aws/compute/alb/application-target-group.d.ts +339 -0
  55. package/lib/aws/compute/alb/application-target-group.js +427 -0
  56. package/lib/aws/compute/alb/conditions.d.ts +61 -0
  57. package/lib/aws/compute/alb/conditions.js +164 -0
  58. package/lib/aws/compute/alb/trust-store-revocation.d.ts +59 -0
  59. package/lib/aws/compute/alb/trust-store-revocation.js +46 -0
  60. package/lib/aws/compute/alb/trust-store.d.ts +86 -0
  61. package/lib/aws/compute/alb/trust-store.js +79 -0
  62. package/lib/aws/compute/architecture.js +1 -1
  63. package/lib/aws/compute/aspects/require-imdsv2-aspect.d.ts +75 -0
  64. package/lib/aws/compute/aspects/require-imdsv2-aspect.js +106 -0
  65. package/lib/aws/compute/bastion-host.d.ts +172 -0
  66. package/lib/aws/compute/bastion-host.js +114 -0
  67. package/lib/aws/compute/chain.js +1 -1
  68. package/lib/aws/compute/cidr-splits.d.ts +49 -0
  69. package/lib/aws/compute/cidr-splits.js +59 -0
  70. package/lib/aws/compute/client-vpn-authorization-rule.d.ts +43 -0
  71. package/lib/aws/compute/client-vpn-authorization-rule.js +30 -0
  72. package/lib/aws/compute/client-vpn-endpoint-types.d.ts +62 -0
  73. package/lib/aws/compute/client-vpn-endpoint-types.js +25 -0
  74. package/lib/aws/compute/client-vpn-endpoint.d.ts +239 -0
  75. package/lib/aws/compute/client-vpn-endpoint.js +259 -0
  76. package/lib/aws/compute/client-vpn-route.d.ts +67 -0
  77. package/lib/aws/compute/client-vpn-route.js +57 -0
  78. package/lib/aws/compute/condition.js +1 -1
  79. package/lib/aws/compute/connections.d.ts +137 -0
  80. package/lib/aws/compute/connections.js +208 -0
  81. package/lib/aws/compute/ec2-augmentations.generated.d.ts +53 -0
  82. package/lib/aws/compute/ec2-augmentations.generated.js +35 -0
  83. package/lib/aws/compute/ec2-canned-metrics.generated.d.ts +555 -0
  84. package/lib/aws/compute/ec2-canned-metrics.generated.js +681 -0
  85. package/lib/aws/compute/ec2-util-v2.d.ts +141 -0
  86. package/lib/aws/compute/ec2-util-v2.js +286 -0
  87. package/lib/aws/compute/ec2-util.d.ts +52 -0
  88. package/lib/aws/compute/ec2-util.js +138 -0
  89. package/lib/aws/compute/elasticloadbalancing-canned-metrics.generated.d.ts +176 -0
  90. package/lib/aws/compute/elasticloadbalancing-canned-metrics.generated.js +119 -0
  91. package/lib/aws/compute/elasticloadbalancingv2-canned-metrics.generated.d.ts +860 -0
  92. package/lib/aws/compute/elasticloadbalancingv2-canned-metrics.generated.js +597 -0
  93. package/lib/aws/compute/event-invoke-config.js +1 -1
  94. package/lib/aws/compute/event-source-filter.js +2 -2
  95. package/lib/aws/compute/event-source-mapping.js +1 -1
  96. package/lib/aws/compute/event-sources/s3-onfailure-destination.js +1 -1
  97. package/lib/aws/compute/event-sources/s3.js +1 -1
  98. package/lib/aws/compute/event-sources/sqs-dlq.js +1 -1
  99. package/lib/aws/compute/event-sources/sqs.js +1 -1
  100. package/lib/aws/compute/fields.js +4 -4
  101. package/lib/aws/compute/function-alias.js +1 -1
  102. package/lib/aws/compute/function-base.js +2 -2
  103. package/lib/aws/compute/function-destinations/event-bridge.js +1 -1
  104. package/lib/aws/compute/function-destinations/function.js +1 -1
  105. package/lib/aws/compute/function-destinations/sqs.js +1 -1
  106. package/lib/aws/compute/function-nodejs.js +1 -1
  107. package/lib/aws/compute/function-url.js +1 -1
  108. package/lib/aws/compute/function-vpc-config.generated.d.ts +3 -3
  109. package/lib/aws/compute/function-vpc-config.generated.js +1 -1
  110. package/lib/aws/compute/function.d.ts +1 -1
  111. package/lib/aws/compute/function.js +5 -5
  112. package/lib/aws/compute/index-alpha.d.ts +5 -0
  113. package/lib/aws/compute/index-alpha.js +22 -0
  114. package/lib/aws/compute/index.d.ts +60 -0
  115. package/lib/aws/compute/index.js +70 -2
  116. package/lib/aws/compute/instance-types.d.ts +1354 -0
  117. package/lib/aws/compute/instance-types.js +1683 -0
  118. package/lib/aws/compute/instance.d.ts +436 -0
  119. package/lib/aws/compute/instance.js +262 -0
  120. package/lib/aws/compute/ip-addresses.d.ts +249 -0
  121. package/lib/aws/compute/ip-addresses.js +248 -0
  122. package/lib/aws/compute/ipam.d.ts +309 -0
  123. package/lib/aws/compute/ipam.js +306 -0
  124. package/lib/aws/compute/key-pair.d.ts +178 -0
  125. package/lib/aws/compute/key-pair.js +194 -0
  126. package/lib/aws/compute/lambda-augmentations.generated.d.ts +65 -0
  127. package/lib/aws/compute/lambda-augmentations.generated.js +41 -0
  128. package/lib/aws/compute/lambda-canned-metrics.generated.d.ts +316 -0
  129. package/lib/aws/compute/lambda-canned-metrics.generated.js +119 -0
  130. package/lib/aws/compute/launch-template.d.ts +540 -0
  131. package/lib/aws/compute/launch-template.js +468 -0
  132. package/lib/aws/compute/lb-shared/access-logs-accounts.d.ts +7 -0
  133. package/lib/aws/compute/lb-shared/access-logs-accounts.js +46 -0
  134. package/lib/aws/compute/lb-shared/base-listener.d.ts +113 -0
  135. package/lib/aws/compute/lb-shared/base-listener.js +181 -0
  136. package/lib/aws/compute/lb-shared/base-load-balancer.d.ts +212 -0
  137. package/lib/aws/compute/lb-shared/base-load-balancer.js +290 -0
  138. package/lib/aws/compute/lb-shared/base-target-group.d.ts +382 -0
  139. package/lib/aws/compute/lb-shared/base-target-group.js +364 -0
  140. package/lib/aws/compute/lb-shared/enums.d.ts +282 -0
  141. package/lib/aws/compute/lb-shared/enums.js +301 -0
  142. package/lib/aws/compute/lb-shared/grid-lookup-types.d.ts +42 -0
  143. package/lib/aws/compute/lb-shared/grid-lookup-types.js +53 -0
  144. package/lib/aws/compute/lb-shared/imported.d.ts +24 -0
  145. package/lib/aws/compute/lb-shared/imported.js +27 -0
  146. package/lib/aws/compute/lb-shared/lb-listener-config.generated.d.ts +194 -0
  147. package/lib/aws/compute/lb-shared/lb-listener-config.generated.js +3 -0
  148. package/lib/aws/compute/lb-shared/lb-target-group-attachment-config.generated.d.ts +56 -0
  149. package/lib/aws/compute/lb-shared/lb-target-group-attachment-config.generated.js +3 -0
  150. package/lib/aws/compute/lb-shared/listener-action.d.ts +14 -0
  151. package/lib/aws/compute/lb-shared/listener-action.js +4 -0
  152. package/lib/aws/compute/lb-shared/listener-certificate.d.ts +28 -0
  153. package/lib/aws/compute/lb-shared/listener-certificate.js +29 -0
  154. package/lib/aws/compute/lb-shared/load-balancer-targets.d.ts +93 -0
  155. package/lib/aws/compute/lb-shared/load-balancer-targets.js +127 -0
  156. package/lib/aws/compute/lb-shared/util.d.ts +113 -0
  157. package/lib/aws/compute/lb-shared/util.js +264 -0
  158. package/lib/aws/compute/lb-targets/alb-target.d.ts +67 -0
  159. package/lib/aws/compute/lb-targets/alb-target.js +100 -0
  160. package/lib/aws/compute/lb-targets/index.d.ts +4 -0
  161. package/lib/aws/compute/lb-targets/index.js +22 -0
  162. package/lib/aws/compute/lb-targets/instance-target.d.ts +42 -0
  163. package/lib/aws/compute/lb-targets/instance-target.js +67 -0
  164. package/lib/aws/compute/lb-targets/ip-target.d.ts +55 -0
  165. package/lib/aws/compute/lb-targets/ip-target.js +79 -0
  166. package/lib/aws/compute/lb-targets/lambda-target.d.ts +25 -0
  167. package/lib/aws/compute/lb-targets/lambda-target.js +50 -0
  168. package/lib/aws/compute/load-balancer.d.ts +336 -0
  169. package/lib/aws/compute/load-balancer.js +287 -0
  170. package/lib/aws/compute/machine-image/amazon-linux-2022.d.ts +63 -0
  171. package/lib/aws/compute/machine-image/amazon-linux-2022.js +84 -0
  172. package/lib/aws/compute/machine-image/amazon-linux-2023.d.ts +63 -0
  173. package/lib/aws/compute/machine-image/amazon-linux-2023.js +84 -0
  174. package/lib/aws/compute/machine-image/amazon-linux2.d.ts +76 -0
  175. package/lib/aws/compute/machine-image/amazon-linux2.js +87 -0
  176. package/lib/aws/compute/machine-image/common.d.ts +181 -0
  177. package/lib/aws/compute/machine-image/common.js +122 -0
  178. package/lib/aws/compute/machine-image/index.d.ts +5 -0
  179. package/lib/aws/compute/machine-image/index.js +22 -0
  180. package/lib/aws/compute/machine-image/machine-image.d.ts +463 -0
  181. package/lib/aws/compute/machine-image/machine-image.js +566 -0
  182. package/lib/aws/compute/machine-image/utils.d.ts +2 -0
  183. package/lib/aws/compute/machine-image/utils.js +17 -0
  184. package/lib/aws/compute/nat.d.ts +325 -0
  185. package/lib/aws/compute/nat.js +455 -0
  186. package/lib/aws/compute/network-acl-types.d.ts +152 -0
  187. package/lib/aws/compute/network-acl-types.js +156 -0
  188. package/lib/aws/compute/network-acl.d.ts +285 -0
  189. package/lib/aws/compute/network-acl.js +207 -0
  190. package/lib/aws/compute/network-util.d.ts +116 -0
  191. package/lib/aws/compute/network-util.js +241 -0
  192. package/lib/aws/compute/nlb/network-listener-action.d.ts +92 -0
  193. package/lib/aws/compute/nlb/network-listener-action.js +146 -0
  194. package/lib/aws/compute/nlb/network-listener-certificate.d.ts +24 -0
  195. package/lib/aws/compute/nlb/network-listener-certificate.js +25 -0
  196. package/lib/aws/compute/nlb/network-listener.d.ts +248 -0
  197. package/lib/aws/compute/nlb/network-listener.js +217 -0
  198. package/lib/aws/compute/nlb/network-load-balancer.d.ts +315 -0
  199. package/lib/aws/compute/nlb/network-load-balancer.js +360 -0
  200. package/lib/aws/compute/nlb/network-target-group.d.ts +153 -0
  201. package/lib/aws/compute/nlb/network-target-group.js +223 -0
  202. package/lib/aws/compute/peer.d.ts +64 -0
  203. package/lib/aws/compute/peer.js +235 -0
  204. package/lib/aws/compute/placement-group.d.ts +161 -0
  205. package/lib/aws/compute/placement-group.js +133 -0
  206. package/lib/aws/compute/port.d.ts +287 -0
  207. package/lib/aws/compute/port.js +390 -0
  208. package/lib/aws/compute/prefix-list.d.ts +131 -0
  209. package/lib/aws/compute/prefix-list.js +114 -0
  210. package/lib/aws/compute/private/context-stub.d.ts +7 -0
  211. package/lib/aws/compute/private/context-stub.js +43 -0
  212. package/lib/aws/compute/private/ebs-util.d.ts +14 -0
  213. package/lib/aws/compute/private/ebs-util.js +145 -0
  214. package/lib/aws/compute/private/intrinstics.js +2 -1
  215. package/lib/aws/compute/private/json-path.js +8 -8
  216. package/lib/aws/compute/private/util.js +2 -3
  217. package/lib/aws/compute/route.d.ts +547 -0
  218. package/lib/aws/compute/route.js +469 -0
  219. package/lib/aws/compute/security-group.d.ts +414 -0
  220. package/lib/aws/compute/security-group.js +538 -0
  221. package/lib/aws/compute/state-graph.js +1 -1
  222. package/lib/aws/compute/state-machine-fragment.js +1 -1
  223. package/lib/aws/compute/state-machine.d.ts +2 -2
  224. package/lib/aws/compute/state-machine.js +14 -12
  225. package/lib/aws/compute/states/choice.js +1 -1
  226. package/lib/aws/compute/states/custom-state.js +1 -1
  227. package/lib/aws/compute/states/distributed-map/item-batcher.js +1 -1
  228. package/lib/aws/compute/states/distributed-map/item-reader.js +5 -5
  229. package/lib/aws/compute/states/distributed-map/result-writer.js +1 -1
  230. package/lib/aws/compute/states/distributed-map.js +1 -1
  231. package/lib/aws/compute/states/fail.js +1 -1
  232. package/lib/aws/compute/states/map-base.js +1 -1
  233. package/lib/aws/compute/states/map.js +1 -1
  234. package/lib/aws/compute/states/parallel.js +1 -1
  235. package/lib/aws/compute/states/pass.js +2 -2
  236. package/lib/aws/compute/states/state.js +5 -5
  237. package/lib/aws/compute/states/succeed.js +1 -1
  238. package/lib/aws/compute/states/task-base.js +2 -2
  239. package/lib/aws/compute/states/task.js +1 -1
  240. package/lib/aws/compute/states/wait.js +2 -2
  241. package/lib/aws/compute/stepfunctions-canned-metrics.generated.d.ts +83 -0
  242. package/lib/aws/compute/stepfunctions-canned-metrics.generated.js +127 -0
  243. package/lib/aws/compute/subnet-v2.d.ts +213 -0
  244. package/lib/aws/compute/subnet-v2.js +405 -0
  245. package/lib/aws/compute/subnet.d.ts +37 -0
  246. package/lib/aws/compute/subnet.js +181 -0
  247. package/lib/aws/compute/task-credentials.js +1 -1
  248. package/lib/aws/compute/task-input.js +1 -1
  249. package/lib/aws/compute/tasks/aws-sdk/call-aws-service.js +1 -1
  250. package/lib/aws/compute/tasks/eventbridge/put-events.js +1 -1
  251. package/lib/aws/compute/tasks/http/invoke.js +1 -1
  252. package/lib/aws/compute/tasks/lambda/invoke.js +1 -1
  253. package/lib/aws/compute/tasks/private/task-utils.js +3 -4
  254. package/lib/aws/compute/tasks/resource-arn-suffix.js +2 -3
  255. package/lib/aws/compute/tasks/sqs/send-message.js +1 -1
  256. package/lib/aws/compute/tasks/stepfunctions/invoke-activity.js +1 -1
  257. package/lib/aws/compute/tasks/stepfunctions/start-execution.js +1 -1
  258. package/lib/aws/compute/types.js +2 -2
  259. package/lib/aws/compute/user-data.d.ts +270 -0
  260. package/lib/aws/compute/user-data.js +487 -0
  261. package/lib/aws/compute/util.d.ts +1 -1
  262. package/lib/aws/compute/util.js +4 -5
  263. package/lib/aws/compute/volume.d.ts +480 -0
  264. package/lib/aws/compute/volume.js +426 -0
  265. package/lib/aws/compute/vpc-endpoint-service.d.ts +149 -0
  266. package/lib/aws/compute/vpc-endpoint-service.js +90 -0
  267. package/lib/aws/compute/vpc-endpoint.d.ts +742 -0
  268. package/lib/aws/compute/vpc-endpoint.js +811 -0
  269. package/lib/aws/compute/vpc-flow-logs.d.ts +551 -0
  270. package/lib/aws/compute/vpc-flow-logs.js +693 -0
  271. package/lib/aws/compute/vpc-lookup.d.ts +73 -0
  272. package/lib/aws/compute/vpc-lookup.js +3 -0
  273. package/lib/aws/compute/vpc-v2-base.d.ts +353 -0
  274. package/lib/aws/compute/vpc-v2-base.js +493 -0
  275. package/lib/aws/compute/vpc-v2.d.ts +385 -0
  276. package/lib/aws/compute/vpc-v2.js +408 -0
  277. package/lib/aws/compute/vpc.d.ts +1448 -0
  278. package/lib/aws/compute/vpc.js +1495 -0
  279. package/lib/aws/compute/vpn.d.ts +443 -0
  280. package/lib/aws/compute/vpn.js +397 -0
  281. package/lib/aws/compute/windows-versions.d.ts +418 -0
  282. package/lib/aws/compute/windows-versions.js +426 -0
  283. package/lib/aws/edge/certificate-base.d.ts +20 -0
  284. package/lib/aws/edge/certificate-base.js +28 -0
  285. package/lib/aws/edge/certificate.d.ts +23 -2
  286. package/lib/aws/edge/certificate.js +54 -4
  287. package/lib/aws/edge/distribution.js +3 -3
  288. package/lib/aws/edge/dns-alias-record-targets.js +2 -2
  289. package/lib/aws/edge/dns-record.js +16 -16
  290. package/lib/aws/edge/dns-zone.d.ts +20 -2
  291. package/lib/aws/edge/dns-zone.js +25 -10
  292. package/lib/aws/edge/function.js +2 -2
  293. package/lib/aws/edge/index.d.ts +1 -0
  294. package/lib/aws/edge/index.js +2 -1
  295. package/lib/aws/edge/key-value-store.js +4 -4
  296. package/lib/aws/edge/origin.js +7 -5
  297. package/lib/aws/edge/response-headers-policy.js +1 -1
  298. package/lib/aws/encryption/alias.js +1 -1
  299. package/lib/aws/encryption/key.js +1 -1
  300. package/lib/aws/encryption/via-service-principal.js +1 -1
  301. package/lib/aws/iam/grant.js +2 -2
  302. package/lib/aws/iam/index.d.ts +1 -0
  303. package/lib/aws/iam/index.js +2 -1
  304. package/lib/aws/iam/instance-profile.d.ts +155 -0
  305. package/lib/aws/iam/instance-profile.js +124 -0
  306. package/lib/aws/iam/managed-policy.js +1 -1
  307. package/lib/aws/iam/oidc-provider.js +1 -1
  308. package/lib/aws/iam/policy-document-config.generated.d.ts +8 -8
  309. package/lib/aws/iam/policy-document-config.generated.js +1 -1
  310. package/lib/aws/iam/policy-document.js +1 -1
  311. package/lib/aws/iam/policy-statement-props.generated.d.ts +8 -8
  312. package/lib/aws/iam/policy-statement-props.generated.js +1 -1
  313. package/lib/aws/iam/policy-statement.js +9 -9
  314. package/lib/aws/iam/policy.js +1 -1
  315. package/lib/aws/iam/principals.js +26 -26
  316. package/lib/aws/iam/private/assume-role-policy.js +2 -3
  317. package/lib/aws/iam/private/comparable-principal.js +2 -3
  318. package/lib/aws/iam/private/immutable-role.d.ts +2 -1
  319. package/lib/aws/iam/private/immutable-role.js +3 -3
  320. package/lib/aws/iam/private/imported-role.d.ts +1 -1
  321. package/lib/aws/iam/private/imported-role.js +3 -3
  322. package/lib/aws/iam/private/merge-statements.js +2 -3
  323. package/lib/aws/iam/private/util.js +4 -4
  324. package/lib/aws/iam/role.js +1 -1
  325. package/lib/aws/iam/saml-provider.d.ts +1 -1
  326. package/lib/aws/iam/saml-provider.js +6 -6
  327. package/lib/aws/iam/unknown-principal.js +1 -1
  328. package/lib/aws/iam/utils.js +2 -3
  329. package/lib/aws/index.d.ts +1 -0
  330. package/lib/aws/index.js +4 -1
  331. package/lib/aws/network/simple-ipv4-vpc.js +5 -5
  332. package/lib/aws/network/subnet-group.js +3 -3
  333. package/lib/aws/network/subnet.d.ts +1 -1
  334. package/lib/aws/network/subnet.js +7 -7
  335. package/lib/aws/notify/archive.js +3 -2
  336. package/lib/aws/notify/connection.js +5 -4
  337. package/lib/aws/notify/event-bus.js +5 -4
  338. package/lib/aws/notify/event-pattern.d.ts +26 -1
  339. package/lib/aws/notify/event-pattern.js +49 -5
  340. package/lib/aws/notify/index.js +3 -1
  341. package/lib/aws/notify/input.js +4 -3
  342. package/lib/aws/notify/kinesis-stream.js +3 -2
  343. package/lib/aws/notify/on-event-options.js +2 -1
  344. package/lib/aws/notify/queue-config.generated.d.ts +18 -11
  345. package/lib/aws/notify/queue-config.generated.js +1 -1
  346. package/lib/aws/notify/queue-policy.js +1 -1
  347. package/lib/aws/notify/queue.js +1 -1
  348. package/lib/aws/notify/resource-policy.js +1 -1
  349. package/lib/aws/notify/rule.js +3 -2
  350. package/lib/aws/notify/schedule.js +2 -2
  351. package/lib/aws/notify/sqs-augmentations.generated.d.ts +125 -0
  352. package/lib/aws/notify/sqs-augmentations.generated.js +74 -0
  353. package/lib/aws/notify/target.js +2 -1
  354. package/lib/aws/notify/targets/event-bus.js +1 -1
  355. package/lib/aws/notify/targets/function.js +1 -1
  356. package/lib/aws/notify/targets/log-group.js +2 -2
  357. package/lib/aws/notify/targets/sqs.js +1 -1
  358. package/lib/aws/notify/targets/state-machine.js +1 -1
  359. package/lib/aws/notify/targets/util.d.ts +1 -1
  360. package/lib/aws/notify/targets/util.js +10 -11
  361. package/lib/aws/notify/util.js +4 -4
  362. package/lib/aws/provider-config.generated.d.ts +33 -33
  363. package/lib/aws/provider-config.generated.js +1 -1
  364. package/lib/aws/storage/bucket-notifications.js +1 -1
  365. package/lib/aws/storage/bucket-policy.js +1 -1
  366. package/lib/aws/storage/bucket-source.js +1 -1
  367. package/lib/aws/storage/bucket.d.ts +298 -65
  368. package/lib/aws/storage/bucket.js +548 -225
  369. package/lib/aws/storage/cors-config.generated.d.ts +3 -3
  370. package/lib/aws/storage/cors-config.generated.js +1 -1
  371. package/lib/aws/storage/cors-rule-config.generated.d.ts +5 -5
  372. package/lib/aws/storage/cors-rule-config.generated.js +1 -1
  373. package/lib/aws/storage/index.d.ts +1 -0
  374. package/lib/aws/storage/index.js +2 -1
  375. package/lib/aws/storage/lifecycle-config.generated.d.ts +11 -11
  376. package/lib/aws/storage/lifecycle-config.generated.js +1 -1
  377. package/lib/aws/storage/notification-targets/function.js +6 -6
  378. package/lib/aws/storage/notification-targets/queue.js +1 -1
  379. package/lib/aws/storage/origin-access-identity.d.ts +1 -1
  380. package/lib/aws/storage/origin-access-identity.js +5 -4
  381. package/lib/aws/storage/parameter-util.d.ts +12 -0
  382. package/lib/aws/storage/parameter-util.js +65 -0
  383. package/lib/aws/storage/parameter.d.ts +526 -0
  384. package/lib/aws/storage/parameter.js +606 -0
  385. package/lib/aws/storage/s3-canned-metrics.generated.d.ts +22 -0
  386. package/lib/aws/storage/s3-canned-metrics.generated.js +23 -0
  387. package/lib/aws/storage/util.d.ts +25 -3
  388. package/lib/aws/storage/util.js +84 -17
  389. package/lib/aws/storage/website-config.generated.d.ts +5 -5
  390. package/lib/aws/storage/website-config.generated.js +1 -1
  391. package/lib/aws/util.js +2 -3
  392. package/lib/construct-base.d.ts +10 -1
  393. package/lib/construct-base.js +9 -6
  394. package/lib/duration.js +1 -1
  395. package/lib/expiration.d.ts +48 -0
  396. package/lib/expiration.js +68 -0
  397. package/lib/helpers-internal/index.d.ts +1 -0
  398. package/lib/helpers-internal/index.js +7 -0
  399. package/lib/index.d.ts +2 -0
  400. package/lib/index.js +3 -1
  401. package/lib/private/md5.d.ts +4 -0
  402. package/lib/private/md5.js +14 -0
  403. package/lib/private/unique-resource-name.js +3 -4
  404. package/lib/size.js +2 -2
  405. package/lib/stack-base.d.ts +4 -23
  406. package/lib/stack-base.js +9 -30
  407. package/lib/terra-func.d.ts +103 -0
  408. package/lib/terra-func.js +170 -0
  409. package/lib/token.js +5 -5
  410. package/package.json +15 -8
  411. package/bun.lockb +0 -0
@@ -0,0 +1,1354 @@
1
+ /**
2
+ * What class and generation of instance to use
3
+ *
4
+ * We have both symbolic and concrete enums for every type.
5
+ *
6
+ * The first are for people that want to specify by purpose,
7
+ * the second one are for people who already know exactly what
8
+ * 'R4' means.
9
+ */
10
+ export declare enum InstanceClass {
11
+ /**
12
+ * Standard instances, 3rd generation
13
+ */
14
+ STANDARD3 = "standard3",
15
+ /**
16
+ * Standard instances, 3rd generation
17
+ */
18
+ M3 = "m3",
19
+ /**
20
+ * Standard instances, 4th generation
21
+ */
22
+ STANDARD4 = "standard4",
23
+ /**
24
+ * Standard instances, 4th generation
25
+ */
26
+ M4 = "m4",
27
+ /**
28
+ * Standard instances, 5th generation
29
+ */
30
+ STANDARD5 = "standard5",
31
+ /**
32
+ * Standard instances, 5th generation
33
+ */
34
+ M5 = "m5",
35
+ /**
36
+ * Standard instances with local NVME drive, 5th generation
37
+ */
38
+ STANDARD5_NVME_DRIVE = "standard5-nvme-drive",
39
+ /**
40
+ * Standard instances with local NVME drive, 5th generation
41
+ */
42
+ M5D = "m5d",
43
+ /**
44
+ * Standard instances based on AMD EPYC, 5th generation
45
+ */
46
+ STANDARD5_AMD = "standard5-amd",
47
+ /**
48
+ * Standard instances based on AMD EPYC, 5th generation
49
+ */
50
+ M5A = "m5a",
51
+ /**
52
+ * Standard instances based on AMD EPYC with local NVME drive, 5th generation
53
+ */
54
+ STANDARD5_AMD_NVME_DRIVE = "standard5-amd-nvme-drive",
55
+ /**
56
+ * Standard instances based on AMD EPYC with local NVME drive, 5th generation
57
+ */
58
+ M5AD = "m5ad",
59
+ /**
60
+ * Standard instances for high performance computing, 5th generation
61
+ */
62
+ STANDARD5_HIGH_PERFORMANCE = "standard5-high-performance",
63
+ /**
64
+ * Standard instances for high performance computing, 5th generation
65
+ */
66
+ M5N = "m5n",
67
+ /**
68
+ * Standard instances with local NVME drive for high performance computing, 5th generation
69
+ */
70
+ STANDARD5_NVME_DRIVE_HIGH_PERFORMANCE = "standard5-nvme-drive-high-performance",
71
+ /**
72
+ * Standard instances with local NVME drive for high performance computing, 5th generation
73
+ */
74
+ M5DN = "m5dn",
75
+ /**
76
+ * Standard instances with high memory and compute capacity based on Intel Xeon Scalable (Cascade Lake) processors, 5nd generation
77
+ */
78
+ STANDARD5_HIGH_COMPUTE = "standard5-high-compute",
79
+ /**
80
+ * Standard instances with high memory and compute capacity based on Intel Xeon Scalable (Cascade Lake) processors, 5nd generation
81
+ */
82
+ M5ZN = "m5zn",
83
+ /**
84
+ * Memory optimized instances, 3rd generation
85
+ */
86
+ MEMORY3 = "memory3",
87
+ /**
88
+ * Memory optimized instances, 3rd generation
89
+ */
90
+ R3 = "r3",
91
+ /**
92
+ * Memory optimized instances, 4th generation
93
+ */
94
+ MEMORY4 = "memory4",
95
+ /**
96
+ * Memory optimized instances, 4th generation
97
+ */
98
+ R4 = "r4",
99
+ /**
100
+ * Memory optimized instances, 5th generation
101
+ */
102
+ MEMORY5 = "memory5",
103
+ /**
104
+ * Memory optimized instances, 5th generation
105
+ */
106
+ R5 = "r5",
107
+ /**
108
+ * Memory optimized instances based on AMD EPYC, 6th generation
109
+ */
110
+ MEMORY6_AMD = "memory6-amd",
111
+ /**
112
+ * Memory optimized instances based on AMD EPYC, 6th generation
113
+ */
114
+ R6A = "r6a",
115
+ /**
116
+ * Memory optimized instances, 6th generation with Intel Xeon Scalable processors (3rd generation processors code named Ice Lake)
117
+ */
118
+ MEMORY6_INTEL = "memory6-intel",
119
+ /**
120
+ * Memory optimized instances, 6th generation with Intel Xeon Scalable processors (3rd generation processors code named Ice Lake)
121
+ */
122
+ R6I = "r6i",
123
+ /**
124
+ * Memory optimized instances with local NVME drive, 6th generation with Intel Xeon Scalable processors (3rd generation processors code named Ice Lake)
125
+ */
126
+ MEMORY6_INTEL_NVME_DRIVE = "memory6-intel-nvme-drive",
127
+ /**
128
+ * Memory optimized instances with local NVME drive, 6th generation with Intel Xeon Scalable processors (3rd generation processors code named Ice Lake)
129
+ */
130
+ R6ID = "r6id",
131
+ /**
132
+ * Memory optimized instances for high performance computing powered by Intel Xeon Scalable processors (code named Ice Lake), 6th generation
133
+ */
134
+ MEMORY6_INTEL_HIGH_PERFORMANCE = "memory6-intel-high-performance",
135
+ /**
136
+ * Memory optimized instances for high performance computing powered by Intel Xeon Scalable processors (code named Ice Lake), 6th generation
137
+ */
138
+ R6IN = "r6in",
139
+ /**
140
+ * Memory optimized instances with local NVME drive for high performance computing powered by Intel Xeon Scalable processors (code named Ice Lake), 6th generation
141
+ */
142
+ MEMORY6_INTEL_NVME_DRIVE_HIGH_PERFORMANCE = "memory6-intel-nvme-drive-high-performance",
143
+ /**
144
+ * Memory optimized instances with local NVME drive for high performance computing powered by Intel Xeon Scalable processors (code named Ice Lake), 6th generation
145
+ */
146
+ R6IDN = "r6idn",
147
+ /**
148
+ * Memory optimized instances for high performance computing, 5th generation
149
+ */
150
+ MEMORY5_HIGH_PERFORMANCE = "memory5-high-performance",
151
+ /**
152
+ * Memory optimized instances for high performance computing, 5th generation
153
+ */
154
+ R5N = "r5n",
155
+ /**
156
+ * Memory optimized instances with local NVME drive, 5th generation
157
+ */
158
+ MEMORY5_NVME_DRIVE = "memory5-nvme-drive",
159
+ /**
160
+ * Memory optimized instances with local NVME drive, 5th generation
161
+ */
162
+ R5D = "r5d",
163
+ /**
164
+ * Memory optimized instances with local NVME drive for high performance computing, 5th generation
165
+ */
166
+ MEMORY5_NVME_DRIVE_HIGH_PERFORMANCE = "memory5-nvme-drive-high-performance",
167
+ /**
168
+ * Memory optimized instances with local NVME drive for high performance computing, 5th generation
169
+ */
170
+ R5DN = "r5dn",
171
+ /**
172
+ * Memory optimized instances based on AMD EPYC, 5th generation
173
+ */
174
+ MEMORY5_AMD = "memory5-amd",
175
+ /**
176
+ * Memory optimized instances based on AMD EPYC, 5th generation
177
+ */
178
+ R5A = "r5a",
179
+ /**
180
+ * Memory optimized instances based on AMD EPYC with local NVME drive, 5th generation
181
+ */
182
+ MEMORY5_AMD_NVME_DRIVE = "memory5-amd-nvme-drive",
183
+ /**
184
+ * Memory optimized instances based on AMD EPYC with local NVME drive, 5th generation
185
+ */
186
+ R5AD = "r5ad",
187
+ /**
188
+ * High memory instances (3TB) based on Intel Xeon Platinum 8176M (Skylake) processors, 1st generation
189
+ */
190
+ HIGH_MEMORY_3TB_1 = "high-memory-3tb-1",
191
+ /**
192
+ * High memory instances (3TB) based on Intel Xeon Platinum 8176M (Skylake) processors, 1st generation
193
+ */
194
+ U_3TB1 = "u-3tb1",
195
+ /**
196
+ * High memory instances (6TB) based on Intel Xeon Platinum 8176M (Skylake) processors, 1st generation
197
+ */
198
+ HIGH_MEMORY_6TB_1 = "high-memory-6tb-1",
199
+ /**
200
+ * High memory instances (6TB) based on Intel Xeon Platinum 8176M (Skylake) processors, 1st generation
201
+ */
202
+ U_6TB1 = "u-6tb1",
203
+ /**
204
+ * High memory instances (9TB) based on Intel Xeon Platinum 8176M (Skylake) processors, 1st generation
205
+ */
206
+ HIGH_MEMORY_9TB_1 = "high-memory-9tb-1",
207
+ /**
208
+ * High memory instances (9TB) based on Intel Xeon Platinum 8176M (Skylake) processors, 1st generation
209
+ */
210
+ U_9TB1 = "u-9tb1",
211
+ /**
212
+ * High memory instances (12TB) based on Intel Xeon Platinum 8176M (Skylake) processors, 1st generation
213
+ */
214
+ HIGH_MEMORY_12TB_1 = "high-memory-12tb-1",
215
+ /**
216
+ * High memory instances (12TB) based on Intel Xeon Platinum 8176M (Skylake) processors, 1st generation
217
+ */
218
+ U_12TB1 = "u-12tb1",
219
+ /**
220
+ * High memory instances (18TB) based on Intel Xeon Scalable (Cascade Lake) processors, 1st generation
221
+ */
222
+ HIGH_MEMORY_18TB_1 = "high-memory-18tb-1",
223
+ /**
224
+ * High memory instances (18TB) based on Intel Xeon Scalable (Cascade Lake) processors, 1st generation
225
+ */
226
+ U_18TB1 = "u-18tb1",
227
+ /**
228
+ * High memory instances (24TB) based on Intel Xeon Scalable (Cascade Lake) processors, 1st generation
229
+ */
230
+ HIGH_MEMORY_24TB_1 = "high-memory-24tb-1",
231
+ /**
232
+ * High memory instances (24TB) based on Intel Xeon Scalable (Cascade Lake) processors, 1st generation
233
+ */
234
+ U_24TB1 = "u-24tb1",
235
+ /**
236
+ * High memory instances (6TB) based on 4th Generation Intel Xeon Scalable processors (Sapphire Rapids), 7th generation
237
+ */
238
+ HIGH_MEMORY_6TB_7 = "high-memory-6tb-7",
239
+ /**
240
+ * High memory instances (6TB) based on 4th Generation Intel Xeon Scalable processors (Sapphire Rapids), 7th generation
241
+ */
242
+ U7I_6TB = "u7i-6tb",
243
+ /**
244
+ * High memory instances (8TB) based on 4th Generation Intel Xeon Scalable processors (Sapphire Rapids), 7th generation
245
+ */
246
+ HIGH_MEMORY_8TB_7 = "high-memory-8tb-7",
247
+ /**
248
+ * High memory instances (8TB) based on 4th Generation Intel Xeon Scalable processors (Sapphire Rapids), 7th generation
249
+ */
250
+ U7I_8TB = "u7i-8tb",
251
+ /**
252
+ * High memory instances (12TB) based on 4th Generation Intel Xeon Scalable processors (Sapphire Rapids), 7th generation
253
+ */
254
+ HIGH_MEMORY_12TB_7 = "high-memory-12tb-7",
255
+ /**
256
+ * High memory instances (12TB) based on 4th Generation Intel Xeon Scalable processors (Sapphire Rapids), 7th generation
257
+ */
258
+ U7I_12TB = "u7i-12tb",
259
+ /**
260
+ * High memory, network-intensive instances (16TB) based on 4th Generation Intel Xeon Scalable processors (Sapphire Rapids), 7th generation
261
+ */
262
+ HIGH_MEMORY_HIGH_NETWORK_16TB_7 = "high-memory-high-network-16tb-7",
263
+ /**
264
+ * High memory, network-intensive instances (16TB) based on 4th Generation Intel Xeon Scalable processors (Sapphire Rapids), 7th generation
265
+ */
266
+ U7IN_16TB = "u7in-16tb",
267
+ /**
268
+ * High memory, network-intensive instances (24TB) based on 4th Generation Intel Xeon Scalable processors (Sapphire Rapids), 7th generation
269
+ */
270
+ HIGH_MEMORY_HIGH_NETWORK_24TB_7 = "high-memory-high-network-24tb-7",
271
+ /**
272
+ * High memory, network-intensive instances (24TB) based on 4th Generation Intel Xeon Scalable processors (Sapphire Rapids), 7th generation
273
+ */
274
+ U7IN_24TB = "u7in-24tb",
275
+ /**
276
+ * High memory, network-intensive instances (32TB) based on 4th Generation Intel Xeon Scalable processors (Sapphire Rapids), 7th generation
277
+ */
278
+ HIGH_MEMORY_HIGH_NETWORK_32TB_7 = "high-memory-high-network-32tb-7",
279
+ /**
280
+ * High memory, network-intensive instances (32TB) based on 4th Generation Intel Xeon Scalable processors (Sapphire Rapids), 7th generation
281
+ */
282
+ U7IN_32TB = "u7in-32tb",
283
+ /**
284
+ * High memory, network-intensive instances (32TB) based on 4th Generation Intel Xeon Scalable processors (Sapphire Rapids), 7th generation
285
+ * U7inh instances use Hewlett Packard Enterprise (HPE) Compute Scale Up Server 3200.
286
+ */
287
+ HIGH_MEMORY_HIGH_NETWORK_HPE_32TB_7 = "high-memory-high-network-hpe-32tb-7",
288
+ /**
289
+ * High memory, network-intensive instances (32TB) based on 4th Generation Intel Xeon Scalable processors (Sapphire Rapids), 7th generation
290
+ * U7inh instances use Hewlett Packard Enterprise (HPE) Compute Scale Up Server 3200.
291
+ */
292
+ U7INH_32TB = "u7inh-32tb",
293
+ /**
294
+ * Memory optimized instances that are also EBS-optimized, 5th generation
295
+ */
296
+ MEMORY5_EBS_OPTIMIZED = "memory5-ebs-optimized",
297
+ /**
298
+ * Memory optimized instances that are also EBS-optimized, 5th generation
299
+ */
300
+ R5B = "r5b",
301
+ /**
302
+ * Memory optimized instances, 6th generation with Graviton2 processors
303
+ */
304
+ MEMORY6_GRAVITON = "memory6-graviton",
305
+ /**
306
+ * Memory optimized instances, 6th generation with Graviton2 processors
307
+ */
308
+ R6G = "r6g",
309
+ /**
310
+ * Memory optimized instances, 6th generation with Graviton2 processors and local NVME drive
311
+ */
312
+ MEMORY6_GRAVITON2_NVME_DRIVE = "memory6-graviton2-nvme-drive",
313
+ /**
314
+ * Memory optimized instances, 6th generation with Graviton2 processors and local NVME drive
315
+ */
316
+ R6GD = "r6gd",
317
+ /**
318
+ * Memory optimized instances, 7th generation with Graviton3 processors
319
+ *
320
+ * This instance class is currently only available in US East (Ohio), US East (N. Virginia), US West (Oregon), and Europe (Ireland).
321
+ */
322
+ MEMORY7_GRAVITON = "memory7-graviton",
323
+ /**
324
+ * Memory optimized instances, 7th generation with Graviton3 processors
325
+ *
326
+ * This instance class is currently only available in US East (Ohio), US East (N. Virginia), US West (Oregon), and Europe (Ireland).
327
+ */
328
+ R7G = "r7g",
329
+ /**
330
+ * Memory optimized instances, 7th generation with Graviton3 processors and local NVME drive
331
+ *
332
+ * This instance class is currently only available in US East (Ohio), US East (N. Virginia), US West (Oregon), and Europe (Ireland).
333
+ */
334
+ MEMORY7_GRAVITON3_NVME_DRIVE = "memory7-graviton3-nvme-drive",
335
+ /**
336
+ * Memory optimized instances, 7th generation with Graviton3 processors and local NVME drive
337
+ *
338
+ * This instance class is currently only available in US East (Ohio), US East (N. Virginia), US West (Oregon), and Europe (Ireland).
339
+ */
340
+ R7GD = "r7gd",
341
+ /**
342
+ * Memory optimized instances based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation w/ 3.2GHz turbo frequency
343
+ */
344
+ MEMORY7_INTEL_BASE = "memory7-intel-base",
345
+ /**
346
+ * Memory optimized instances based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation w/ 3.2GHz turbo frequency
347
+ */
348
+ R7I = "r7i",
349
+ /**
350
+ * Memory optimized instances based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation, with sustained 3.9GHz turbo frequency
351
+ */
352
+ MEMORY7_INTEL = "memory7-intel",
353
+ /**
354
+ * Memory optimized instances based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation, with sustained 3.9GHz turbo frequency
355
+ */
356
+ R7IZ = "r7iz",
357
+ /**
358
+ * Memory optimized instances based on 4th generation AMD EPYC (codename Genoa), 7th generation
359
+ */
360
+ MEMORY7_AMD = "memory7-amd",
361
+ /**
362
+ * Memory optimized instances based on 4th generation AMD EPYC (codename Genoa), 7th generation
363
+ */
364
+ R7A = "r7a",
365
+ /**
366
+ * Memory optimized instances with Graviton4 processors
367
+ */
368
+ MEMORY8_GRAVITON = "memory8-graviton",
369
+ /**
370
+ * Memory optimized instances with Graviton4 processors
371
+ */
372
+ R8G = "r8g",
373
+ /**
374
+ * Compute optimized instances, 3rd generation
375
+ */
376
+ COMPUTE3 = "compute3",
377
+ /**
378
+ * Compute optimized instances, 3rd generation
379
+ */
380
+ C3 = "c3",
381
+ /**
382
+ * Compute optimized instances, 4th generation
383
+ */
384
+ COMPUTE4 = "compute4",
385
+ /**
386
+ * Compute optimized instances, 4th generation
387
+ */
388
+ C4 = "c4",
389
+ /**
390
+ * Compute optimized instances, 5th generation
391
+ */
392
+ COMPUTE5 = "compute5",
393
+ /**
394
+ * Compute optimized instances, 5th generation
395
+ */
396
+ C5 = "c5",
397
+ /**
398
+ * Compute optimized instances with local NVME drive, 5th generation
399
+ */
400
+ COMPUTE5_NVME_DRIVE = "compute5-nvme-drive",
401
+ /**
402
+ * Compute optimized instances with local NVME drive, 5th generation
403
+ */
404
+ C5D = "c5d",
405
+ /**
406
+ * Compute optimized instances based on AMD EPYC, 5th generation
407
+ */
408
+ COMPUTE5_AMD = "compute5-amd",
409
+ /**
410
+ * Compute optimized instances based on AMD EPYC, 5th generation
411
+ */
412
+ C5A = "c5a",
413
+ /**
414
+ * Compute optimized instances with local NVME drive based on AMD EPYC, 5th generation
415
+ */
416
+ COMPUTE5_AMD_NVME_DRIVE = "compute5-amd-nvme-drive",
417
+ /**
418
+ * Compute optimized instances with local NVME drive based on AMD EPYC, 5th generation
419
+ */
420
+ C5AD = "c5ad",
421
+ /**
422
+ * Compute optimized instances for high performance computing, 5th generation
423
+ */
424
+ COMPUTE5_HIGH_PERFORMANCE = "compute5-high-performance",
425
+ /**
426
+ * Compute optimized instances for high performance computing, 5th generation
427
+ */
428
+ C5N = "c5n",
429
+ /**
430
+ * Compute optimized instances, 6th generation
431
+ */
432
+ COMPUTE6_INTEL = "compute6-intel",
433
+ /**
434
+ * Compute optimized instances, 6th generation
435
+ */
436
+ C6I = "c6i",
437
+ /**
438
+ * Compute optimized instances with local NVME drive, 6th generation
439
+ */
440
+ COMPUTE6_INTEL_NVME_DRIVE = "compute6-intel-nvme-drive",
441
+ /**
442
+ * Compute optimized instances with local NVME drive, 6th generation
443
+ */
444
+ C6ID = "c6id",
445
+ /**
446
+ * Compute optimized instances for high performance computing, 6th generation
447
+ */
448
+ COMPUTE6_INTEL_HIGH_PERFORMANCE = "compute6-intel-high-performance",
449
+ /**
450
+ * Compute optimized instances for high performance computing, 6th generation
451
+ */
452
+ C6IN = "c6in",
453
+ /**
454
+ * Compute optimized instances based on AMD EPYC (codename Milan), 6th generation
455
+ */
456
+ COMPUTE6_AMD = "compute6-amd",
457
+ /**
458
+ * Compute optimized instances based on AMD EPYC (codename Milan), 6th generation
459
+ */
460
+ C6A = "c6a",
461
+ /**
462
+ * Compute optimized instances for high performance computing, 6th generation with Graviton2 processors
463
+ */
464
+ COMPUTE6_GRAVITON2 = "compute6-graviton2",
465
+ /**
466
+ * Compute optimized instances for high performance computing, 6th generation with Graviton2 processors
467
+ */
468
+ C6G = "c6g",
469
+ /**
470
+ * Compute optimized instances for high performance computing, 7th generation with Graviton3 processors
471
+ */
472
+ COMPUTE7_GRAVITON3 = "compute7-graviton3",
473
+ /**
474
+ * Compute optimized instances for high performance computing, 7th generation with Graviton3 processors
475
+ */
476
+ C7G = "c7g",
477
+ /**
478
+ * Compute optimized instances for high performance computing, 8th generation with Graviton4 processors
479
+ *
480
+ * This instance class is currently only available in US East (Ohio), US East (N. Virginia), US West (Oregon), and Europe (Frankfurt).
481
+ */
482
+ COMPUTE8_GRAVITON4 = "compute8-graviton4",
483
+ /**
484
+ * Compute optimized instances for high performance computing, 8th generation with Graviton4 processors
485
+ *
486
+ * This instance class is currently only available in US East (Ohio), US East (N. Virginia), US West (Oregon), and Europe (Frankfurt).
487
+ */
488
+ C8G = "c8g",
489
+ /**
490
+ * Compute optimized instances for high performance computing, 6th generation with Graviton2 processors
491
+ * and local NVME drive
492
+ */
493
+ COMPUTE6_GRAVITON2_NVME_DRIVE = "compute6-graviton2-nvme-drive",
494
+ /**
495
+ * Compute optimized instances for high performance computing, 6th generation with Graviton2 processors
496
+ * and local NVME drive
497
+ */
498
+ C6GD = "c6gd",
499
+ /**
500
+ * Compute optimized instances for high performance computing, 7th generation with Graviton3 processors and local NVME drive
501
+ *
502
+ * This instance class is currently only available in US East (Ohio), US East (N. Virginia), US West (Oregon), and Europe (Ireland).
503
+ */
504
+ COMPUTE7_GRAVITON3_NVME_DRIVE = "compute7-graviton3-nvme-drive",
505
+ /**
506
+ * Compute optimized instances for high performance computing, 7th generation with Graviton3 processors and local NVME drive
507
+ *
508
+ * This instance class is currently only available in US East (Ohio), US East (N. Virginia), US West (Oregon), and Europe (Ireland).
509
+ */
510
+ C7GD = "c7gd",
511
+ /**
512
+ * Compute optimized instances for high performance computing, 6th generation with Graviton2 processors
513
+ * and high network bandwidth capabilities
514
+ */
515
+ COMPUTE6_GRAVITON2_HIGH_NETWORK_BANDWIDTH = "compute6-graviton2-high-network-bandwidth",
516
+ /**
517
+ * Compute optimized instances for high performance computing, 6th generation with Graviton2 processors
518
+ * and high network bandwidth capabilities
519
+ */
520
+ C6GN = "c6gn",
521
+ /**
522
+ * Compute optimized instances for high performance computing, 7th generation with Graviton3 processors
523
+ * and high network bandwidth capabilities
524
+ */
525
+ COMPUTE7_GRAVITON3_HIGH_NETWORK_BANDWIDTH = "compute7-graviton3-high-network-bandwidth",
526
+ /**
527
+ * Compute optimized instances for high performance computing, 7th generation with Graviton3 processors
528
+ * and high network bandwidth capabilities
529
+ */
530
+ C7GN = "c7gn",
531
+ /**
532
+ * Compute optimized instances based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation
533
+ */
534
+ COMPUTE7_INTEL = "compute7-intel",
535
+ /**
536
+ * Compute optimized instances based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation
537
+ */
538
+ C7I = "c7i",
539
+ /**
540
+ * Compute optimized instances based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation
541
+ * C7i-flex instances efficiently use compute resources to deliver a baseline level of performance with the ability to scale up to the full compute performance a majority of the time.
542
+ */
543
+ COMPUTE7_INTEL_FLEX = "compute7-intel-flex",
544
+ /**
545
+ * Compute optimized instances based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation
546
+ * C7i-flex instances efficiently use compute resources to deliver a baseline level of performance with the ability to scale up to the full compute performance a majority of the time.
547
+ */
548
+ C7I_FLEX = "c7i-flex",
549
+ /**
550
+ * Compute optimized instances based on 4th generation AMD EPYC (codename Genoa), 7th generation
551
+ */
552
+ COMPUTE7_AMD = "compute7-amd",
553
+ /**
554
+ * Compute optimized instances based on 4th generation AMD EPYC (codename Genoa), 7th generation
555
+ */
556
+ C7A = "c7a",
557
+ /**
558
+ * Storage-optimized instances, 2nd generation
559
+ */
560
+ STORAGE2 = "storage2",
561
+ /**
562
+ * Storage-optimized instances, 2nd generation
563
+ */
564
+ D2 = "d2",
565
+ /**
566
+ * Storage-optimized instances, 3rd generation
567
+ */
568
+ STORAGE3 = "storage3",
569
+ /**
570
+ * Storage-optimized instances, 3rd generation
571
+ */
572
+ D3 = "d3",
573
+ /**
574
+ * Storage-optimized instances, 3rd generation
575
+ */
576
+ STORAGE3_ENHANCED_NETWORK = "storage3-enhanced-network",
577
+ /**
578
+ * Storage-optimized instances, 3rd generation
579
+ */
580
+ D3EN = "d3en",
581
+ /**
582
+ * Storage/compute balanced instances, 1st generation
583
+ */
584
+ STORAGE_COMPUTE_1 = "storage-compute-1",
585
+ /**
586
+ * Storage/compute balanced instances, 1st generation
587
+ */
588
+ H1 = "h1",
589
+ /**
590
+ * High performance computing powered by AWS Trainium
591
+ */
592
+ TRAINING_ACCELERATOR1 = "training-accelerator1",
593
+ /**
594
+ * High performance computing powered by AWS Trainium
595
+ */
596
+ TRN1 = "trn1",
597
+ /**
598
+ * Network-optimized high performance computing powered by AWS Trainium
599
+ */
600
+ TRAINING_ACCELERATOR1_ENHANCED_NETWORK = "training-accelerator1-enhanced-network",
601
+ /**
602
+ * Network-optimized high performance computing powered by AWS Trainium
603
+ */
604
+ TRN1N = "trn1n",
605
+ /**
606
+ * High performance computing powered by AWS Trainium2, 2nd generation
607
+ */
608
+ TRAINING_ACCELERATOR2 = "training-accelerator2",
609
+ /**
610
+ * High performance computing powered by AWS Trainium2, 2nd generation
611
+ */
612
+ TRN2 = "trn2",
613
+ /**
614
+ * High performance computing powered by AWS Trainium2 and EC2 Ultra Servers, 2nd generation
615
+ * UltraServers connect multiple EC2 instances using a dedicated, high-bandwidth, low-latency accelerator interconnect
616
+ */
617
+ TRAINING_ACCELERATOR2_ULTRASERVER = "training-accelerator2-ultraserver",
618
+ /**
619
+ * High performance computing powered by AWS Trainium2 and EC2 Ultra Servers, 2nd generation
620
+ * UltraServers connect multiple EC2 instances using a dedicated, high-bandwidth, low-latency accelerator interconnect
621
+ */
622
+ TRN2U = "trn2u",
623
+ /**
624
+ * I/O-optimized instances, 3rd generation
625
+ */
626
+ IO3 = "io3",
627
+ /**
628
+ * I/O-optimized instances, 3rd generation
629
+ */
630
+ I3 = "i3",
631
+ /**
632
+ * I/O-optimized instances with local NVME drive, 3rd generation
633
+ */
634
+ IO3_DENSE_NVME_DRIVE = "io3-dense-nvme-drive",
635
+ /**
636
+ * I/O-optimized instances with local NVME drive, 3rd generation
637
+ */
638
+ I3EN = "i3en",
639
+ /**
640
+ * I/O-optimized instances with local NVME drive powered by Intel Xeon Scalable processors (code named Ice Lake), 4th generation
641
+ */
642
+ IO4_INTEL = "io4_intel",
643
+ /**
644
+ * I/O-optimized instances with local NVME drive powered by Intel Xeon Scalable processors (code named Ice Lake), 4th generation
645
+ */
646
+ I4I = "i4i",
647
+ /**
648
+ * Storage optimized instances powered by Graviton2 processor, 4th generation
649
+ */
650
+ STORAGE4_GRAVITON = "storage4_graviton",
651
+ /**
652
+ * Storage optimized instances powered by Graviton2 processor, 4th generation
653
+ */
654
+ I4G = "i4g",
655
+ /**
656
+ * Storage optimized instances powered by Graviton2 processor, 4th generation
657
+ */
658
+ STORAGE4_GRAVITON_NETWORK_OPTIMIZED = "storage4-graviton-network-optimized",
659
+ /**
660
+ * Storage optimized instances powered by Graviton2 processor, 4th generation
661
+ */
662
+ IM4GN = "im4gn",
663
+ /**
664
+ * Storage optimized instances powered by Graviton2 processor, 4th generation
665
+ */
666
+ STORAGE4_GRAVITON_NETWORK_STORAGE_OPTIMIZED = "storage4-graviton-network-storage-optimized",
667
+ /**
668
+ * Storage optimized instances powered by Graviton2 processor, 4th generation
669
+ */
670
+ IS4GEN = "is4gen",
671
+ /**
672
+ * Storage optimized instances powered by 5th generation Intel Xeon Scalable processors, 7th generation
673
+ */
674
+ STORAGE7_INTEL_STORAGE_OPTIMIZED = "storage7-intel-storage-optimized",
675
+ /**
676
+ * Storage optimized instances powered by 5th generation Intel Xeon Scalable processors, 7th generation
677
+ */
678
+ I7IE = "i7ie",
679
+ /**
680
+ * Storage optimized instances powered by Graviton4 processor, 8th generation
681
+ */
682
+ STORAGE8_GRAVITON = "storage8-graviton",
683
+ /**
684
+ * Storage optimized instances powered by Graviton4 processor, 8th generation
685
+ */
686
+ I8G = "i8g",
687
+ /**
688
+ * Burstable instances, 2nd generation
689
+ */
690
+ BURSTABLE2 = "burstable2",
691
+ /**
692
+ * Burstable instances, 2nd generation
693
+ */
694
+ T2 = "t2",
695
+ /**
696
+ * Burstable instances, 3rd generation
697
+ */
698
+ BURSTABLE3 = "burstable3",
699
+ /**
700
+ * Burstable instances, 3rd generation
701
+ */
702
+ T3 = "t3",
703
+ /**
704
+ * Burstable instances based on AMD EPYC, 3rd generation
705
+ */
706
+ BURSTABLE3_AMD = "burstable3-amd",
707
+ /**
708
+ * Burstable instances based on AMD EPYC, 3rd generation
709
+ */
710
+ T3A = "t3a",
711
+ /**
712
+ * Burstable instances, 4th generation with Graviton2 processors
713
+ */
714
+ BURSTABLE4_GRAVITON = "burstable4-graviton",
715
+ /**
716
+ * Burstable instances, 4th generation with Graviton2 processors
717
+ */
718
+ T4G = "t4g",
719
+ /**
720
+ * Memory-intensive instances, 1st generation
721
+ */
722
+ MEMORY_INTENSIVE_1 = "memory-intensive-1",
723
+ /**
724
+ * Memory-intensive instances, 1st generation
725
+ */
726
+ X1 = "x1",
727
+ /**
728
+ * Memory-intensive instances, extended, 1st generation
729
+ */
730
+ MEMORY_INTENSIVE_1_EXTENDED = "memory-intensive-1-extended",
731
+ /**
732
+ * Memory-intensive instances, extended, 1st generation
733
+ */
734
+ X1E = "x1e",
735
+ /**
736
+ * Memory-intensive instances, 2nd generation with Graviton2 processors
737
+ *
738
+ * This instance type can be used only in RDS. It is not supported in EC2.
739
+ */
740
+ MEMORY_INTENSIVE_2_GRAVITON2 = "memory-intensive-2-graviton2",
741
+ /**
742
+ * Memory-intensive instances, 2nd generation with Graviton2 processors
743
+ *
744
+ * This instance type can be used only in RDS. It is not supported in EC2.
745
+ */
746
+ X2G = "x2g",
747
+ /**
748
+ * Memory-intensive instances, 2nd generation with Graviton2 processors and local NVME drive
749
+ */
750
+ MEMORY_INTENSIVE_2_GRAVITON2_NVME_DRIVE = "memory-intensive-2-graviton2-nvme-drive",
751
+ /**
752
+ * Memory-intensive instances, 2nd generation with Graviton2 processors and local NVME drive
753
+ */
754
+ X2GD = "x2gd",
755
+ /**
756
+ * Memory-intensive instances with higher network bandwith, local NVME drive, and extended memory. Intel Xeon Scalable (Ice Lake) processors
757
+ */
758
+ MEMORY_INTENSIVE_2_XT_INTEL = "memory_intensive_2_xt_intel",
759
+ /**
760
+ * Memory-intensive instances with higher network bandwith, local NVME drive, and extended memory. Intel Xeon Scalable (Ice Lake) processors
761
+ */
762
+ X2IEDN = "x2iedn",
763
+ /**
764
+ * Memory-intensive instances with higher network bandwith and local NVME drive, Intel Xeon Scalable (Ice Lake) processors
765
+ */
766
+ MEMORY_INTENSIVE_2_INTEL = "memory_intensive_2_intel",
767
+ /**
768
+ * Memory-intensive instances with higher network bandwith and local NVME drive, Intel Xeon Scalable (Ice Lake) processors
769
+ */
770
+ X2IDN = "x2idn",
771
+ /**
772
+ * Memory-intensive instances with higher network bandwith and single-threaded performance, Intel Xeon Scalable (Cascade Lake) processors
773
+ */
774
+ MEMORY_INTENSIVE_2_XTZ_INTEL = "memory_intensive_2_xtz_intel",
775
+ /**
776
+ * Memory-intensive instances with higher network bandwith and single-threaded performance, Intel Xeon Scalable (Cascade Lake) processors
777
+ */
778
+ X2IEZN = "x2iezn",
779
+ /**
780
+ * Memory-intensive instances powered by Graviton4 processors, 8th generation
781
+ */
782
+ MEMORY_INTENSIVE_8_GRAVITON = "memory-intensive-8-graviton",
783
+ /**
784
+ * Memory-intensive instances powered by Graviton4 processors, 8th generation
785
+ */
786
+ X8G = "x8g",
787
+ /**
788
+ * Instances with customizable hardware acceleration, 1st generation
789
+ */
790
+ FPGA1 = "fpga1",
791
+ /**
792
+ * Instances with customizable hardware acceleration, 1st generation
793
+ */
794
+ F1 = "f1",
795
+ /**
796
+ * Instances with customizable hardware acceleration, 2nd generation
797
+ */
798
+ FPGA2 = "fpga2",
799
+ /**
800
+ * Instances with customizable hardware acceleration, 2nd generation
801
+ */
802
+ F2 = "f2",
803
+ /**
804
+ * Graphics-optimized instances, 3rd generation
805
+ */
806
+ GRAPHICS3_SMALL = "graphics3-small",
807
+ /**
808
+ * Graphics-optimized instances, 3rd generation
809
+ */
810
+ G3S = "g3s",
811
+ /**
812
+ * Graphics-optimized instances, 3rd generation
813
+ */
814
+ GRAPHICS3 = "graphics3",
815
+ /**
816
+ * Graphics-optimized instances, 3rd generation
817
+ */
818
+ G3 = "g3",
819
+ /**
820
+ * Graphics-optimized instances with NVME drive for high performance computing, 4th generation
821
+ */
822
+ GRAPHICS4_NVME_DRIVE_HIGH_PERFORMANCE = "graphics4-nvme-drive-high-performance",
823
+ /**
824
+ * Graphics-optimized instances with NVME drive for high performance computing, 4th generation
825
+ */
826
+ G4DN = "g4dn",
827
+ /**
828
+ * Graphics-optimized instances based on AMD EPYC And Radeon Pro GPU (NAVI) with local NVME drive, 4th generation
829
+ */
830
+ GRAPHICS4_AMD_NVME_DRIVE = "graphics4-amd-nvme-drive",
831
+ /**
832
+ * Graphics-optimized instances based on AMD EPYC And Radeon Pro GPU (NAVI) with local NVME drive, 4th generation
833
+ */
834
+ G4AD = "g4ad",
835
+ /**
836
+ * Graphics-optimized instances, 5th generation
837
+ */
838
+ GRAPHICS5 = "graphics5",
839
+ /**
840
+ * Graphics-optimized instances, 5th generation
841
+ */
842
+ G5 = "g5",
843
+ /**
844
+ * Graphics-optimized instances powered by AWS Graviton2 Processors and NVIDIA T4G Tensor Core GPUs, 5th generation
845
+ */
846
+ GRAPHICS5_GRAVITON2 = "graphics5-graviton2",
847
+ /**
848
+ * Graphics-optimized instances powered by AWS Graviton2 Processors and NVIDIA T4G Tensor Core GPUs, 5th generation
849
+ */
850
+ G5G = "g5g",
851
+ /**
852
+ * Graphics-optimized instances, 6th generation
853
+ */
854
+ GRAPHICS6 = "graphics6",
855
+ /**
856
+ * Graphics-optimized instances, 6th generation
857
+ */
858
+ G6 = "g6",
859
+ /**
860
+ * Cost-efficient GPU-based instances for AI inference and spatial computing workloads, 6th generation
861
+ */
862
+ GRAPHICS6_EFFICIENT = "graphics6-efficient",
863
+ /**
864
+ * Cost-efficient GPU-based instances for AI inference and spatial computing workloads, 6th generation
865
+ */
866
+ G6E = "g6e",
867
+ /**
868
+ * Graphics-optimized instances, 6th generation
869
+ * Gr6 instances offer a 1:8 vCPU to RAM ratio, making them better suited for graphics workloads with higher memory requirements.
870
+ */
871
+ GRAPHICS_RAM_6 = "graphics-ram-6",
872
+ /**
873
+ * Graphics-optimized instances, 6th generation
874
+ * Gr6 instances offer a 1:8 vCPU to RAM ratio, making them better suited for graphics workloads with higher memory requirements.
875
+ */
876
+ GR6 = "gr6",
877
+ /**
878
+ * Parallel-processing optimized instances, 2nd generation
879
+ */
880
+ PARALLEL2 = "parallel2",
881
+ /**
882
+ * Parallel-processing optimized instances, 2nd generation
883
+ */
884
+ P2 = "p2",
885
+ /**
886
+ * Parallel-processing optimized instances, 3rd generation
887
+ */
888
+ PARALLEL3 = "parallel3",
889
+ /**
890
+ * Parallel-processing optimized instances, 3rd generation
891
+ */
892
+ P3 = "p3",
893
+ /**
894
+ * Parallel-processing optimized instances with local NVME drive for high performance computing, 3rd generation
895
+ */
896
+ PARALLEL3_NVME_DRIVE_HIGH_PERFORMANCE = "parallel3-nvme-drive-high-performance",
897
+ /**
898
+ * Parallel-processing optimized instances with local NVME drive for high performance computing, 3rd generation
899
+ */
900
+ P3DN = "p3dn",
901
+ /**
902
+ * Parallel-processing optimized instances with local NVME drive, extended, 4th generation (in developer preview)
903
+ */
904
+ PARALLEL4_NVME_DRIVE_EXTENDED = "parallel4-nvme-drive-extended",
905
+ /**
906
+ * Parallel-processing optimized instances with local NVME drive, extended, 4th generation (in developer preview)
907
+ */
908
+ P4DE = "p4de",
909
+ /**
910
+ * Parallel-processing optimized instances, 4th generation
911
+ */
912
+ PARALLEL4 = "parallel4",
913
+ /**
914
+ * Parallel-processing optimized instances, 4th generation
915
+ */
916
+ P4D = "p4d",
917
+ /**
918
+ * Parallel-processing optimized instances powered by NVIDIA H100 Tensor Core GPUs, 5th generation
919
+ */
920
+ PARALLEL5 = "parallel5",
921
+ /**
922
+ * Parallel-processing optimized instances powered by NVIDIA H100 Tensor Core GPUs, 5th generation
923
+ */
924
+ P5 = "p5",
925
+ /**
926
+ * Parallel-processing optimized instances powered by NVIDIA H200 Tensor Core GPUs, 5th generation
927
+ */
928
+ PARALLEL5_EXTENDED = "parallel5-extended",
929
+ /**
930
+ * Parallel-processing optimized instances, 5th generation
931
+ */
932
+ P5E = "p5e",
933
+ /**
934
+ * Parallel-processing, network-optimized instances powered by NVIDIA H200 Tensor Core GPUs, 5th generation
935
+ * P5en instances pair NVIDIA H200 Tensor Core GPUs with Intel Sapphire Rapids CPU, enabling Gen5 PCIe between CPU and GPU
936
+ */
937
+ PARALLEL5_EXTENDED_NETWORK = "parallel5-extended-network",
938
+ /**
939
+ * Parallel-processing optimized instances, 5th generation
940
+ */
941
+ P5EN = "p5en",
942
+ /**
943
+ * Arm processor based instances, 1st generation
944
+ */
945
+ ARM1 = "arm1",
946
+ /**
947
+ * Arm processor based instances, 1st generation
948
+ */
949
+ A1 = "a1",
950
+ /**
951
+ * Arm processor based instances, 2nd generation
952
+ */
953
+ STANDARD6_GRAVITON = "standard6-graviton",
954
+ /**
955
+ * Arm processor based instances, 2nd generation
956
+ */
957
+ M6G = "m6g",
958
+ /**
959
+ * Standard instances based on Intel (Ice Lake), 6th generation.
960
+ */
961
+ STANDARD6_INTEL = "standard6-intel",
962
+ /**
963
+ * Standard instances based on Intel (Ice Lake), 6th generation.
964
+ */
965
+ M6I = "m6i",
966
+ /**
967
+ * Standard instances based on Intel (Ice Lake) with local NVME drive, 6th generation.
968
+ */
969
+ STANDARD6_INTEL_NVME_DRIVE = "standard6-intel-nvme-drive",
970
+ /**
971
+ * Standard instances based on Intel (Ice Lake) with local NVME drive, 6th generation.
972
+ */
973
+ M6ID = "m6id",
974
+ /**
975
+ * Standard instances for high performance computing powered by Intel Xeon Scalable processors (code named Ice Lake), 6th generation.
976
+ */
977
+ STANDARD6_INTEL_HIGH_PERFORMANCE = "standard6-intel-high-performance",
978
+ /**
979
+ * Standard instances for high performance computing powered by Intel Xeon Scalable processors (code named Ice Lake), 6th generation.
980
+ */
981
+ M6IN = "m6in",
982
+ /**
983
+ * Standard instances with local NVME drive for high performance computing powered by Intel Xeon Scalable processors (code named Ice Lake), 6th generation.
984
+ */
985
+ STANDARD6_INTEL_NVME_DRIVE_HIGH_PERFORMANCE = "standard6-intel-nvme-drive-high-performance",
986
+ /**
987
+ * Standard instances with local NVME drive for high performance computing powered by Intel Xeon Scalable processors (code named Ice Lake), 6th generation.
988
+ */
989
+ M6IDN = "m6idn",
990
+ /**
991
+ * Standard instances based on 3rd Gen AMD EPYC processors, 6th generation.
992
+ */
993
+ STANDARD6_AMD = "standard6-amd",
994
+ /**
995
+ * Standard instances based on 3rd Gen AMD EPYC processors, 6th generation.
996
+ */
997
+ M6A = "m6a",
998
+ /**
999
+ * Standard instances, 6th generation with Graviton2 processors and local NVME drive
1000
+ */
1001
+ STANDARD6_GRAVITON2_NVME_DRIVE = "standard6-graviton2-nvme-drive",
1002
+ /**
1003
+ * Standard instances, 6th generation with Graviton2 processors and local NVME drive
1004
+ */
1005
+ M6GD = "m6gd",
1006
+ /**
1007
+ * Standard instances, 7th generation with Graviton3 processors
1008
+ *
1009
+ * This instance class is currently only available in US East (Ohio), US East (N. Virginia), US West (Oregon), and Europe (Ireland).
1010
+ */
1011
+ STANDARD7_GRAVITON = "standard7-graviton",
1012
+ /**
1013
+ * Standard instances, 7th generation with Graviton3 processors
1014
+ *
1015
+ * This instance class is currently only available in US East (Ohio), US East (N. Virginia), US West (Oregon), and Europe (Ireland).
1016
+ */
1017
+ M7G = "m7g",
1018
+ /**
1019
+ * Standard instances, 8th generation with Graviton4 processors
1020
+ *
1021
+ * This instance class is currently only available in US East (Ohio), US East (N. Virginia), US West (Oregon), and Europe (Frankfurt).
1022
+ */
1023
+ STANDARD8_GRAVITON = "standard8-graviton",
1024
+ /**
1025
+ * Standard instances, 8th generation with Graviton4 processors
1026
+ *
1027
+ * This instance class is currently only available in US East (Ohio), US East (N. Virginia), US West (Oregon), and Europe (Frankfurt).
1028
+ */
1029
+ M8G = "m8g",
1030
+ /**
1031
+ * Standard instances, 7th generation with Graviton3 processors and local NVME drive
1032
+ *
1033
+ * This instance class is currently only available in US East (Ohio), US East (N. Virginia), US West (Oregon), and Europe (Ireland).
1034
+ */
1035
+ STANDARD7_GRAVITON3_NVME_DRIVE = "standard7-graviton3-nvme-drive",
1036
+ /**
1037
+ * Standard instances, 7th generation with Graviton3 processors and local NVME drive
1038
+ *
1039
+ * This instance class is currently only available in US East (Ohio), US East (N. Virginia), US West (Oregon), and Europe (Ireland).
1040
+ */
1041
+ M7GD = "m7gd",
1042
+ /**
1043
+ * Standard instances with high memory and compute capacity based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation
1044
+ */
1045
+ STANDARD7_INTEL = "standard7-intel",
1046
+ /**
1047
+ * Standard instances with high memory and compute capacity based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation
1048
+ */
1049
+ M7I = "m7i",
1050
+ /**
1051
+ * Flexible instances with high memory and compute capacity based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation
1052
+ * The M7i-Flex instances deliver a baseline of 40% CPU performance, and can scale up to full CPU performance 95% of the time
1053
+ */
1054
+ STANDARD7_INTEL_FLEX = "standard7-intel-flex",
1055
+ /**
1056
+ * Flexible instances with high memory and compute capacity based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation
1057
+ * The M7i-Flex instances deliver a baseline of 40% CPU performance, and can scale up to full CPU performance 95% of the time
1058
+ */
1059
+ M7I_FLEX = "m7i-flex",
1060
+ /**
1061
+ * Standard instances based on 4th generation AMD EPYC (codename Genoa), 7th generation
1062
+ */
1063
+ STANDARD7_AMD = "standard7-amd",
1064
+ /**
1065
+ * Standard instances based on 4th generation AMD EPYC (codename Genoa), 7th generation
1066
+ */
1067
+ M7A = "m7a",
1068
+ /**
1069
+ * High memory and compute capacity instances, 1st generation
1070
+ */
1071
+ HIGH_COMPUTE_MEMORY1 = "high-compute-memory1",
1072
+ /**
1073
+ * High memory and compute capacity instances, 1st generation
1074
+ */
1075
+ Z1D = "z1d",
1076
+ /**
1077
+ * Inferentia Chips based instances for machine learning inference applications, 1st generation
1078
+ */
1079
+ INFERENCE1 = "inference1",
1080
+ /**
1081
+ * Inferentia Chips based instances for machine learning inference applications, 1st generation
1082
+ */
1083
+ INF1 = "inf1",
1084
+ /**
1085
+ * Inferentia Chips based instances for machine learning inference applications, 2nd generation
1086
+ */
1087
+ INFERENCE2 = "inference2",
1088
+ /**
1089
+ * Inferentia Chips based instances for machine learning inference applications, 2nd generation
1090
+ */
1091
+ INF2 = "inf2",
1092
+ /**
1093
+ * Macintosh instances built on Apple Mac mini computers, 1st generation with Intel procesors
1094
+ */
1095
+ MACINTOSH1_INTEL = "macintosh1-intel",
1096
+ /**
1097
+ * Macintosh instances built on Apple Mac mini computers, 1st generation with Intel procesors
1098
+ */
1099
+ MAC1 = "mac1",
1100
+ /**
1101
+ * Macintosh instances built on Apple Mac mini 2020 computers, 2nd generation with Apple silicon M1 processors
1102
+ */
1103
+ MACINTOSH2_M1 = "macintosh2-m1",
1104
+ /**
1105
+ * Macintosh instances built on Apple Mac mini 2020 computers, 2nd generation with Apple silicon M1 processors
1106
+ */
1107
+ MAC2 = "mac2",
1108
+ /**
1109
+ * Macintosh instances built on Apple Mac mini 2023 computers, 2nd generation with Apple silicon M2 processors
1110
+ */
1111
+ MACINTOSH2_M2 = "macintosh2-m2",
1112
+ /**
1113
+ * Macintosh instances built on Apple Mac mini 2023 computers, 2nd generation with Apple silicon M2 processors
1114
+ */
1115
+ MAC2_M2 = "mac2-m2",
1116
+ /**
1117
+ * Macintosh instances built on Apple Mac mini 2023 computers, 2nd generation with Apple silicon M2 Pro processors
1118
+ */
1119
+ MACINTOSH2_M2_PRO = "macintosh2-m2-pro",
1120
+ /**
1121
+ * Macintosh instances built on Apple Mac mini 2023 computers, 2nd generation with Apple silicon M2 Pro processors
1122
+ */
1123
+ MAC2_M2PRO = "mac2-m2pro",
1124
+ /**
1125
+ * Macintosh instances built on 2022 Mac Studio hardware powered by Apple silicon M1 Ultra processors
1126
+ */
1127
+ MACINTOSH2_M1_ULTRA = "macintosh2-m1-ultra",
1128
+ /**
1129
+ * Macintosh instances built on 2022 Mac Studio hardware powered by Apple silicon M1 Ultra processors
1130
+ */
1131
+ MAC2_M1ULTRA = "mac2-m1ultra",
1132
+ /**
1133
+ * Multi-stream video transcoding instances for resolutions up to 4K UHD, 1st generation
1134
+ */
1135
+ VIDEO_TRANSCODING1 = "video-transcoding1",
1136
+ /**
1137
+ * Multi-stream video transcoding instances for resolutions up to 4K UHD, 1st generation
1138
+ */
1139
+ VT1 = "vt1",
1140
+ /**
1141
+ * High performance computing based on AMD EPYC, 6th generation
1142
+ */
1143
+ HIGH_PERFORMANCE_COMPUTING6_AMD = "high-performance-computing6-amd",
1144
+ /**
1145
+ * High performance computing based on AMD EPYC, 6th generation
1146
+ */
1147
+ HPC6A = "hpc6a",
1148
+ /**
1149
+ * High performance computing with local NVME drive based on 6th generation with Intel Xeon Scalable processors (3rd generation processors code named Ice Lake), 6th generation
1150
+ */
1151
+ HIGH_PERFORMANCE_COMPUTING6_INTEL_NVME_DRIVE = "high-performance-computing6-intel-nvme-drive",
1152
+ /**
1153
+ * High performance computing with local NVME drive based on 6th generation with Intel Xeon Scalable processors (3rd generation processors code named Ice Lake), 6th generation
1154
+ */
1155
+ HPC6ID = "hpc6id",
1156
+ /**
1157
+ * High performance computing based on AMD EPYC, 7th generation
1158
+ */
1159
+ HIGH_PERFORMANCE_COMPUTING7_AMD = "high-performance-computing7-amd",
1160
+ /**
1161
+ * High performance computing based on AMD EPYC, 7th generation
1162
+ */
1163
+ HPC7A = "hpc7a",
1164
+ /**
1165
+ * High performance computing based on Graviton, 7th generation
1166
+ */
1167
+ HIGH_PERFORMANCE_COMPUTING7_GRAVITON = "high-performance-computing7-graviton",
1168
+ /**
1169
+ * High performance computing based on Graviton, 7th generation
1170
+ */
1171
+ HPC7G = "hpc7g",
1172
+ /**
1173
+ * Deep learning instances powered by Gaudi accelerators from Habana Labs (an Intel company), 1st generation
1174
+ */
1175
+ DEEP_LEARNING1 = "deep-learning1",
1176
+ /**
1177
+ * Deep learning instances powered by Gaudi accelerators from Habana Labs (an Intel company), 1st generation
1178
+ */
1179
+ DL1 = "dl1",
1180
+ /**
1181
+ * Deep learning instances powered by Qualcomm AI 100 Standard accelerators, 2nd generation
1182
+ */
1183
+ DEEP_LEARNING2_QUALCOMM = "deep-learning2-qualcomm",
1184
+ /**
1185
+ * Deep learning instances powered by Qualcomm AI 100 Standard accelerators, 2nd generation
1186
+ */
1187
+ DL2Q = "dl2q"
1188
+ }
1189
+ /**
1190
+ * Identifies an instance's CPU architecture
1191
+ */
1192
+ export declare enum InstanceArchitecture {
1193
+ /**
1194
+ * ARM64 architecture
1195
+ */
1196
+ ARM_64 = "arm64",
1197
+ /**
1198
+ * x86-64 architecture
1199
+ */
1200
+ X86_64 = "x86_64"
1201
+ }
1202
+ /**
1203
+ * What size of instance to use
1204
+ */
1205
+ export declare enum InstanceSize {
1206
+ /**
1207
+ * Instance size NANO (nano)
1208
+ */
1209
+ NANO = "nano",
1210
+ /**
1211
+ * Instance size MICRO (micro)
1212
+ */
1213
+ MICRO = "micro",
1214
+ /**
1215
+ * Instance size SMALL (small)
1216
+ */
1217
+ SMALL = "small",
1218
+ /**
1219
+ * Instance size MEDIUM (medium)
1220
+ */
1221
+ MEDIUM = "medium",
1222
+ /**
1223
+ * Instance size LARGE (large)
1224
+ */
1225
+ LARGE = "large",
1226
+ /**
1227
+ * Instance size XLARGE (xlarge)
1228
+ */
1229
+ XLARGE = "xlarge",
1230
+ /**
1231
+ * Instance size XLARGE2 (2xlarge)
1232
+ */
1233
+ XLARGE2 = "2xlarge",
1234
+ /**
1235
+ * Instance size XLARGE3 (3xlarge)
1236
+ */
1237
+ XLARGE3 = "3xlarge",
1238
+ /**
1239
+ * Instance size XLARGE4 (4xlarge)
1240
+ */
1241
+ XLARGE4 = "4xlarge",
1242
+ /**
1243
+ * Instance size XLARGE6 (6xlarge)
1244
+ */
1245
+ XLARGE6 = "6xlarge",
1246
+ /**
1247
+ * Instance size XLARGE8 (8xlarge)
1248
+ */
1249
+ XLARGE8 = "8xlarge",
1250
+ /**
1251
+ * Instance size XLARGE9 (9xlarge)
1252
+ */
1253
+ XLARGE9 = "9xlarge",
1254
+ /**
1255
+ * Instance size XLARGE10 (10xlarge)
1256
+ */
1257
+ XLARGE10 = "10xlarge",
1258
+ /**
1259
+ * Instance size XLARGE12 (12xlarge)
1260
+ */
1261
+ XLARGE12 = "12xlarge",
1262
+ /**
1263
+ * Instance size XLARGE16 (16xlarge)
1264
+ */
1265
+ XLARGE16 = "16xlarge",
1266
+ /**
1267
+ * Instance size XLARGE18 (18xlarge)
1268
+ */
1269
+ XLARGE18 = "18xlarge",
1270
+ /**
1271
+ * Instance size XLARGE24 (24xlarge)
1272
+ */
1273
+ XLARGE24 = "24xlarge",
1274
+ /**
1275
+ * Instance size XLARGE32 (32xlarge)
1276
+ */
1277
+ XLARGE32 = "32xlarge",
1278
+ /**
1279
+ * Instance size XLARGE48 (48xlarge)
1280
+ */
1281
+ XLARGE48 = "48xlarge",
1282
+ /**
1283
+ * Instance size XLARGE56 (56xlarge)
1284
+ */
1285
+ XLARGE56 = "56xlarge",
1286
+ /**
1287
+ * Instance size XLARGE96 (96xlarge)
1288
+ */
1289
+ XLARGE96 = "96xlarge",
1290
+ /**
1291
+ * Instance size XLARGE112 (112xlarge)
1292
+ */
1293
+ XLARGE112 = "112xlarge",
1294
+ /**
1295
+ * Instance size XLARGE224 (224xlarge)
1296
+ */
1297
+ XLARGE224 = "224xlarge",
1298
+ /**
1299
+ * Instance size XLARGE480 (480xlarge)
1300
+ */
1301
+ XLARGE480 = "480xlarge",
1302
+ /**
1303
+ * Instance size METAL (metal)
1304
+ */
1305
+ METAL = "metal",
1306
+ /**
1307
+ * Instance size XLARGE16METAL (metal-16xl)
1308
+ */
1309
+ XLARGE16METAL = "metal-16xl",
1310
+ /**
1311
+ * Instance size XLARGE24METAL (metal-24xl)
1312
+ */
1313
+ XLARGE24METAL = "metal-24xl",
1314
+ /**
1315
+ * Instance size XLARGE32METAL (metal-32xl)
1316
+ */
1317
+ XLARGE32METAL = "metal-32xl",
1318
+ /**
1319
+ * Instance size XLARGE48METAL (metal-48xl)
1320
+ */
1321
+ XLARGE48METAL = "metal-48xl"
1322
+ }
1323
+ /**
1324
+ * Instance type for EC2 instances
1325
+ *
1326
+ * This class takes a literal string, good if you already
1327
+ * know the identifier of the type you want.
1328
+ */
1329
+ export declare class InstanceType {
1330
+ private readonly instanceTypeIdentifier;
1331
+ /**
1332
+ * Instance type for EC2 instances
1333
+ *
1334
+ * This class takes a combination of a class and size.
1335
+ *
1336
+ * Be aware that not all combinations of class and size are available, and not all
1337
+ * classes are available in all regions.
1338
+ */
1339
+ static of(instanceClass: InstanceClass, instanceSize: InstanceSize): InstanceType;
1340
+ constructor(instanceTypeIdentifier: string);
1341
+ /**
1342
+ * Return the instance type as a dotted string
1343
+ */
1344
+ toString(): string;
1345
+ /**
1346
+ * The instance's CPU architecture
1347
+ */
1348
+ get architecture(): InstanceArchitecture;
1349
+ sameInstanceClassAs(other: InstanceType): boolean;
1350
+ /**
1351
+ * Return whether this instance type is a burstable instance type
1352
+ */
1353
+ isBurstable(): boolean;
1354
+ }