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): add m6i instances #16081

Merged
merged 9 commits into from
Aug 26, 2021
10 changes: 10 additions & 0 deletions packages/@aws-cdk/aws-ec2/lib/instance-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,16 @@ export enum InstanceClass {
*/
M6G = 'm6g',

/**
* Standard instances based on Intel (Ice Lake), 6th generation.
*/
STANDARD6_INTEL = 'm6i',

/**
* Standard instances based on Intel (Ice Lake), 6th generation.
*/
M6I = 'm6i',

/**
* Standard instances, 6th generation with Graviton2 processors and local NVME drive
*/
Expand Down