Skip to content

Commit

Permalink
feat(ec2): add support for x2idn and x2iedn instances (#19334)
Browse files Browse the repository at this point in the history
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*
  • Loading branch information
robertd authored Mar 11, 2022
1 parent 59a4d81 commit 9699efc
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions packages/@aws-cdk/aws-ec2/lib/instance-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -556,6 +556,26 @@ export enum InstanceClass {
*/
X2GD = 'x2gd',

/**
* Memory-intensive instances with higher network bandwith, local NVME drive, and extended memory. Intel Xeon Scalable (Ice Lake) processors
*/
MEMORY_INTENSIVE_2_XT_INTEL = 'x2iedn',

/**
* Memory-intensive instances with higher network bandwith, local NVME drive, and extended memory. Intel Xeon Scalable (Ice Lake) processors
*/
X2IEDN = 'x2iedn',

/**
* Memory-intensive instances with higher network bandwith and local NVME drive, Intel Xeon Scalable (Ice Lake) processors
*/
MEMORY_INTENSIVE_2_INTEL = 'x2idn',

/**
* Memory-intensive instances with higher network bandwith and local NVME drive, Intel Xeon Scalable (Ice Lake) processors
*/
X2IDN = 'x2idn',

/**
* Instances with customizable hardware acceleration, 1st generation
*/
Expand Down

0 comments on commit 9699efc

Please sign in to comment.