Skip to content

Commit 9699efc

Browse files
authored
feat(ec2): add support for x2idn and x2iedn instances (#19334)
Blogpost: https://aws.amazon.com/blogs/aws/new-amazon-ec2-x2idn-and-x2iedn-instances-for-memory-intensive-workloads-with-higher-network-bandwidth/ CloudFormation docs are catching up... awsdocs/aws-cloudformation-user-guide#1182 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 59a4d81 commit 9699efc

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

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

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -556,6 +556,26 @@ export enum InstanceClass {
556556
*/
557557
X2GD = 'x2gd',
558558

559+
/**
560+
* Memory-intensive instances with higher network bandwith, local NVME drive, and extended memory. Intel Xeon Scalable (Ice Lake) processors
561+
*/
562+
MEMORY_INTENSIVE_2_XT_INTEL = 'x2iedn',
563+
564+
/**
565+
* Memory-intensive instances with higher network bandwith, local NVME drive, and extended memory. Intel Xeon Scalable (Ice Lake) processors
566+
*/
567+
X2IEDN = 'x2iedn',
568+
569+
/**
570+
* Memory-intensive instances with higher network bandwith and local NVME drive, Intel Xeon Scalable (Ice Lake) processors
571+
*/
572+
MEMORY_INTENSIVE_2_INTEL = 'x2idn',
573+
574+
/**
575+
* Memory-intensive instances with higher network bandwith and local NVME drive, Intel Xeon Scalable (Ice Lake) processors
576+
*/
577+
X2IDN = 'x2idn',
578+
559579
/**
560580
* Instances with customizable hardware acceleration, 1st generation
561581
*/

0 commit comments

Comments
 (0)