Skip to content

Commit 5497525

Browse files
authoredDec 13, 2021
feat(ec2): add high memory instances u-6tb1, u-9tb1, u-12tb1, u-18tb1, and u-24tb1 (#17964)
`u-6tb1`,`u-9tb1`, `u-12tb1` blog post: https://aws.amazon.com/blogs/aws/now-available-amazon-ec2-high-memory-instances-with-6-9-and-12-tb-of-memory-perfect-for-sap-hana/ `u-18tb1` `u-24tb1` blog post: https://aws.amazon.com/blogs/aws/ec2-high-memory-update-new-18-tb-and-24-tb-instances/ ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent c6b7a49 commit 5497525

File tree

1 file changed

+60
-0
lines changed

1 file changed

+60
-0
lines changed
 

‎packages/@aws-cdk/aws-ec2/lib/instance-types.ts

+60
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,56 @@ export enum InstanceClass {
183183
*/
184184
MEMORY5_AMD_NVME_DRIVE = 'r5ad',
185185

186+
/**
187+
* High memory instances (6TB) based on Intel Xeon Platinum 8176M (Skylake) processors, 1st generation
188+
*/
189+
HIGH_MEMORY_6TB_1 = 'u-6tb1',
190+
191+
/**
192+
* High memory instances (6TB) based on Intel Xeon Platinum 8176M (Skylake) processors, 1st generation
193+
*/
194+
U_6TB1 = 'u-6tb1',
195+
196+
/**
197+
* High memory instances (9TB) based on Intel Xeon Platinum 8176M (Skylake) processors, 1st generation
198+
*/
199+
HIGH_MEMORY_9TB_1 = 'u-9tb1',
200+
201+
/**
202+
* High memory instances (9TB) based on Intel Xeon Platinum 8176M (Skylake) processors, 1st generation
203+
*/
204+
U_9TB1 = 'u-9tb1',
205+
206+
/**
207+
* High memory instances (12TB) based on Intel Xeon Platinum 8176M (Skylake) processors, 1st generation
208+
*/
209+
HIGH_MEMORY_12TB_1 = 'u-12tb1',
210+
211+
/**
212+
* High memory instances (12TB) based on Intel Xeon Platinum 8176M (Skylake) processors, 1st generation
213+
*/
214+
U_12TB1 = 'u-12tb1',
215+
216+
/**
217+
* High memory instances (18TB) based on Intel Xeon Scalable (Cascade Lake) processors, 1st generation
218+
*/
219+
HIGH_MEMORY_18TB_1 = 'u-18tb1',
220+
221+
/**
222+
* High memory instances (18TB) based on Intel Xeon Scalable (Cascade Lake) processors, 1st generation
223+
*/
224+
U_18TB1 = 'u-18tb1',
225+
226+
/**
227+
* High memory instances (24TB) based on Intel Xeon Scalable (Cascade Lake) processors, 1st generation
228+
*/
229+
HIGH_MEMORY_24TB_1 = 'u-24tb1',
230+
231+
/**
232+
* High memory instances (24TB) based on Intel Xeon Scalable (Cascade Lake) processors, 1st generation
233+
*/
234+
U_24TB1 = 'u-24tb1',
235+
186236
/**
187237
* Memory optimized instances based on AMD EPYC with local NVME drive, 5th generation
188238
*/
@@ -741,6 +791,16 @@ export enum InstanceSize {
741791
*/
742792
XLARGE48 = '48xlarge',
743793

794+
/**
795+
* Instance size XLARGE56 (56xlarge)
796+
*/
797+
XLARGE56 = '56xlarge',
798+
799+
/**
800+
* Instance size XLARGE56 (112xlarge)
801+
*/
802+
XLARGE112 = '112xlarge',
803+
744804
/**
745805
* Instance size METAL (metal)
746806
*/

0 commit comments

Comments
 (0)
Please sign in to comment.