Skip to content
Merged
Changes from all 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
12 changes: 12 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 @@ -858,6 +858,16 @@ export enum InstanceClass {
*/
I7IE = 'i7ie',

/**
* I/O-optimized instances with local NVME drive powered by 5th generation Intel Xeon Scalable processors, 7th generation
*/
IO7_INTEL = 'io7_intel',

/**
* I/O-optimized instances with local NVME drive powered by 5th generation Intel Xeon Scalable processors, 7th generation
*/
I7I = 'i7i',

/**
* Storage optimized instances powered by Graviton4 processor, 8th generation
*/
Expand Down Expand Up @@ -1845,6 +1855,8 @@ export class InstanceType {
[InstanceClass.IS4GEN]: 'is4gen',
[InstanceClass.STORAGE7_INTEL_STORAGE_OPTIMIZED]: 'i7ie',
[InstanceClass.I7IE]: 'i7ie',
[InstanceClass.IO7_INTEL]: 'i7i',
[InstanceClass.I7I]: 'i7i',
[InstanceClass.STORAGE8_GRAVITON]: 'i8g',
[InstanceClass.I8G]: 'i8g',
[InstanceClass.BURSTABLE2]: 't2',
Expand Down
Loading