From fa82e80ca7ba8c5888b6d271060e04019e0ce1d4 Mon Sep 17 00:00:00 2001 From: Lee Packham Date: Sat, 29 Sep 2018 12:15:43 +0100 Subject: [PATCH] fix(aws-ec2): Add Burstable Generation 3 Instances Add T3/Burstable3 to the instance types enumeration. --- packages/@aws-cdk/aws-ec2/lib/instance-types.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/packages/@aws-cdk/aws-ec2/lib/instance-types.ts b/packages/@aws-cdk/aws-ec2/lib/instance-types.ts index 3eae246416e0c..43a3c44d8d6fc 100644 --- a/packages/@aws-cdk/aws-ec2/lib/instance-types.ts +++ b/packages/@aws-cdk/aws-ec2/lib/instance-types.ts @@ -128,6 +128,16 @@ export enum InstanceClass { */ T2 = 't2', + /** + * Burstable instances, 3rd generation + */ + Burstable3 = 't3', + + /** + * Burstable instances, 3rd generation + */ + T3 = 't3', + /** * Memory-intensive instances, 1st generation */