From 46fe5a564cf3f80bb757aca688dda273e0c7034b Mon Sep 17 00:00:00 2001 From: robertd Date: Mon, 16 Aug 2021 17:06:26 -0600 Subject: [PATCH 1/2] feat(ec2): add m6i instances --- packages/@aws-cdk/aws-ec2/lib/instance-types.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages/@aws-cdk/aws-ec2/lib/instance-types.ts b/packages/@aws-cdk/aws-ec2/lib/instance-types.ts index a12dfb92061c6..8826bf2ed2364 100644 --- a/packages/@aws-cdk/aws-ec2/lib/instance-types.ts +++ b/packages/@aws-cdk/aws-ec2/lib/instance-types.ts @@ -442,6 +442,18 @@ export enum InstanceClass { */ M6G = 'm6g', + /** + * Standard instances based on Intel (Ice Lake), 6th generation. + * + * @stability stable + */ + 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 */ From d9177057f1c624395cb4d439069444e764905525 Mon Sep 17 00:00:00 2001 From: robertd Date: Mon, 23 Aug 2021 14:19:08 -0600 Subject: [PATCH 2/2] remove unnecesary stuff --- packages/@aws-cdk/aws-ec2/lib/instance-types.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/@aws-cdk/aws-ec2/lib/instance-types.ts b/packages/@aws-cdk/aws-ec2/lib/instance-types.ts index 8826bf2ed2364..013f7d3389f3c 100644 --- a/packages/@aws-cdk/aws-ec2/lib/instance-types.ts +++ b/packages/@aws-cdk/aws-ec2/lib/instance-types.ts @@ -444,8 +444,6 @@ export enum InstanceClass { /** * Standard instances based on Intel (Ice Lake), 6th generation. - * - * @stability stable */ STANDARD6_INTEL = 'm6i',