Skip to content

Commit

Permalink
Merge branch 'main' into lambdaArns35
Browse files Browse the repository at this point in the history
  • Loading branch information
vasireddy99 authored Nov 9, 2023
2 parents 54fddd0 + 9a56bce commit ee35f45
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions packages/aws-cdk-lib/aws-ec2/lib/instance-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -347,12 +347,22 @@ export enum InstanceClass {
R7GD = 'r7gd',

/**
* Memory optimized instances based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation
* Memory optimized instances based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation w/ 3.2GHz turbo frequency
*/
MEMORY7_INTEL_BASE = 'memory7-intel-base',

/**
* Memory optimized instances based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation w/ 3.2GHz turbo frequency
*/
R7I = 'r7i',

/**
* Memory optimized instances based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation, with sustained 3.9GHz turbo frequency
*/
MEMORY7_INTEL = 'memory7-intel',

/**
* Memory optimized instances based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation
* Memory optimized instances based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation, with sustained 3.9GHz turbo frequency
*/
R7IZ = 'r7iz',

Expand Down Expand Up @@ -1335,6 +1345,8 @@ export class InstanceType {
[InstanceClass.R7G]: 'r7g',
[InstanceClass.MEMORY7_GRAVITON3_NVME_DRIVE]: 'r7gd',
[InstanceClass.R7GD]: 'r7gd',
[InstanceClass.MEMORY7_INTEL_BASE]: 'r7i',
[InstanceClass.R7I]: 'r7i',
[InstanceClass.MEMORY7_INTEL]: 'r7iz',
[InstanceClass.R7IZ]: 'r7iz',
[InstanceClass.MEMORY7_AMD]: 'r7a',
Expand Down

0 comments on commit ee35f45

Please sign in to comment.