Skip to content

Commit 3fe8ab4

Browse files
authored
feat(ec2): add i7i instance class (#34453)
### Issue # (if applicable) None ### Reason for this change https://aws.amazon.com/about-aws/whats-new/2025/04/amazon-ec2-i7i-high-performance-storage-optimized-instances/ ### Description of changes EC2 add i7i instance class ### Description of how you validated changes ```console $ aws ec2 describe-instance-types | grep -e i7i "InstanceType": "i7ie.18xlarge", "InstanceType": "i7ie.24xlarge", "InstanceType": "i7i.12xlarge", "InstanceType": "i7i.2xlarge", ``` ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 1ebe6c5 commit 3fe8ab4

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

packages/aws-cdk-lib/aws-ec2/lib/instance-types.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -858,6 +858,16 @@ export enum InstanceClass {
858858
*/
859859
I7IE = 'i7ie',
860860

861+
/**
862+
* I/O-optimized instances with local NVME drive powered by 5th generation Intel Xeon Scalable processors, 7th generation
863+
*/
864+
IO7_INTEL = 'io7_intel',
865+
866+
/**
867+
* I/O-optimized instances with local NVME drive powered by 5th generation Intel Xeon Scalable processors, 7th generation
868+
*/
869+
I7I = 'i7i',
870+
861871
/**
862872
* Storage optimized instances powered by Graviton4 processor, 8th generation
863873
*/
@@ -1845,6 +1855,8 @@ export class InstanceType {
18451855
[InstanceClass.IS4GEN]: 'is4gen',
18461856
[InstanceClass.STORAGE7_INTEL_STORAGE_OPTIMIZED]: 'i7ie',
18471857
[InstanceClass.I7IE]: 'i7ie',
1858+
[InstanceClass.IO7_INTEL]: 'i7i',
1859+
[InstanceClass.I7I]: 'i7i',
18481860
[InstanceClass.STORAGE8_GRAVITON]: 'i8g',
18491861
[InstanceClass.I8G]: 'i8g',
18501862
[InstanceClass.BURSTABLE2]: 't2',

0 commit comments

Comments
 (0)