From 2b32197044c24d29978f68cc53979810768eb2e3 Mon Sep 17 00:00:00 2001 From: Jacob Doetsch Date: Thu, 31 Dec 2020 18:19:05 -1000 Subject: [PATCH] feat(ec2): add m6gd and r6gd metadata closes #12301 --- .../@aws-cdk/aws-ec2/lib/instance-types.ts | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/packages/@aws-cdk/aws-ec2/lib/instance-types.ts b/packages/@aws-cdk/aws-ec2/lib/instance-types.ts index 12d7a483f8cf9..336106e65c14b 100644 --- a/packages/@aws-cdk/aws-ec2/lib/instance-types.ts +++ b/packages/@aws-cdk/aws-ec2/lib/instance-types.ts @@ -168,6 +168,16 @@ export enum InstanceClass { */ R6G = 'r6g', + /** + * Memory optimized instances, 6th generation with Graviton2 processors and local NVME drive + */ + MEMORY6_GRAVITON2_NVME_DRIVE = 'r6gd', + + /** + * Memory optimized instances, 6th generation with Graviton2 processors and local NVME drive + */ + R6GD = 'r6gd', + /** * Compute optimized instances, 3rd generation */ @@ -420,6 +430,16 @@ export enum InstanceClass { */ M6G = 'm6g', + /** + * Standard instances, 6th generation with Graviton2 processors and local NVME drive + */ + STANDARD6_GRAVITON2_NVME_DRIVE = 'm6gd', + + /** + * Standard instances, 6th generation with Graviton2 processors and local NVME drive + */ + M6GD = 'm6gd', + /** * High memory and compute capacity instances, 1st generation */