Skip to content

Commit

Permalink
Merge branch 'main' into conroy/fixsynth
Browse files Browse the repository at this point in the history
  • Loading branch information
kaizencc authored Sep 15, 2023
2 parents 566dcc7 + fe0955f commit a82a81e
Showing 1 changed file with 26 additions and 0 deletions.
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

0 comments on commit a82a81e

Please sign in to comment.