Skip to content

Commit

Permalink
feat(ec2): add c5ad instances (#16428)
Browse files Browse the repository at this point in the history
Innocuous addition of c5ad instance class

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
cmooreamazon authored Oct 28, 2021
1 parent c24af54 commit 0318253
Showing 1 changed file with 12 additions and 2 deletions.
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

0 comments on commit 0318253

Please sign in to comment.