Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(ec2): add support for x2idn and x2iedn instances #19334

Merged
merged 5 commits into from Mar 11, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 20 additions & 0 deletions packages/@aws-cdk/aws-ec2/lib/instance-types.ts
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