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): support of m7i and m7i-flex ec2-instancetypes #27156

Merged
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions packages/aws-cdk-lib/aws-ec2/lib/instance-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -918,6 +918,28 @@ export enum InstanceClass {
*/
M7GD = 'm7gd',

/**
* Standard instances with high memory and compute capacity based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation
*/
STANDARD7_INTEL = 'standard7-intel',

/**
* Standard instances with high memory and compute capacity based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation
*/
M7I = 'm7i',

/**
* Flexible instances with high memory and compute capacity based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation
* The M7i-Flex instances deliver a baseline of 40% CPU performance, and can scale up to full CPU performance 95% of the time
*/
STANDARD7_INTEL_FLEX = 'standard7-intel-flex',

/**
* Flexible instances with high memory and compute capacity based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation
* The M7i-Flex instances deliver a baseline of 40% CPU performance, and can scale up to full CPU performance 95% of the time
*/
M7I_FLEX = 'm7i-flex',

/**
* High memory and compute capacity instances, 1st generation
*/
Expand Down Expand Up @@ -1305,6 +1327,10 @@ export class InstanceType {
[InstanceClass.M7G]: 'm7g',
[InstanceClass.STANDARD7_GRAVITON3_NVME_DRIVE]: 'm7gd',
[InstanceClass.M7GD]: 'm7gd',
[InstanceClass.STANDARD7_INTEL]: 'm7i',
[InstanceClass.M7I]: 'm7i',
[InstanceClass.STANDARD7_INTEL_FLEX]: 'm7i-flex',
[InstanceClass.M7I_FLEX]: 'm7i-flex',
[InstanceClass.HIGH_COMPUTE_MEMORY1]: 'z1d',
[InstanceClass.Z1D]: 'z1d',
[InstanceClass.INFERENCE1]: 'inf1',
Expand Down
Loading