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 c5ad instances #16428

Merged
merged 11 commits into from
Oct 28, 2021
14 changes: 12 additions & 2 deletions packages/@aws-cdk/aws-ec2/lib/instance-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,11 @@ export enum InstanceClass {
*/
COMPUTE5_NVME_DRIVE = 'c5d',

/**
* Compute optimized instances with local NVME drive, 5th generation
*/
C5D = 'c5d',

/**
* Compute optimized instances based on AMD EPYC, 5th generation.
*/
Expand All @@ -224,9 +229,14 @@ export enum InstanceClass {
C5A = 'c5a',

/**
* Compute optimized instances with local NVME drive, 5th generation
* Compute optimized instances with local NVME drive based on AMD EPYC, 5th generation.
*/
C5D = 'c5d',
COMPUTE5_AMD_NVME_DRIVE = 'c5ad',

/**
* Compute optimized instances with local NVME drive based on AMD EPYC, 5th generation.
*/
C5AD = 'c5ad',

/**
* Compute optimized instances for high performance computing, 5th generation
Expand Down