From c7f39ca97874c1d8d5286ab347a97fc458547830 Mon Sep 17 00:00:00 2001 From: Julian Michel Date: Wed, 19 Jan 2022 21:19:10 +0100 Subject: [PATCH] feat(ec2): add Hpc6a instances (#18445) Add support for Hpc6a instances (high performance computing). [Announcement](https://aws.amazon.com/about-aws/whats-new/2022/01/amazon-ec2-hpc6a-instances/) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- 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 029219ce9bb79..cf82f9b8e40a5 100644 --- a/packages/@aws-cdk/aws-ec2/lib/instance-types.ts +++ b/packages/@aws-cdk/aws-ec2/lib/instance-types.ts @@ -725,6 +725,16 @@ export enum InstanceClass { * Multi-stream video transcoding instances for resolutions up to 4K UHD, 1st generation */ VT1 = 'vt1', + + /** + * High performance computing based on AMD EPYC, 6th generation + */ + HIGH_PERFORMANCE_COMPUTING6_AMD = 'hpc6a', + + /** + * High performance computing based on AMD EPYC, 6th generation + */ + HPC6A = 'hpc6a', } /**