Skip to content

Commit

Permalink
feat(ec2): add m5n and m5dn instance types (#17488)
Browse files Browse the repository at this point in the history
Adding missing EC2 instances types `m5n` and `m5dn`

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
hoegertn committed Nov 12, 2021
1 parent e828ee2 commit df30d4f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions packages/@aws-cdk/aws-ec2/lib/instance-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,26 @@ export enum InstanceClass {
*/
M5AD = 'm5ad',

/**
* Standard instances for high performance computing, 5th generation
*/
STANDARD5_HIGH_PERFORMANCE = 'm5n',

/**
* Standard instances for high performance computing, 5th generation
*/
M5N = 'm5n',

/**
* Standard instances with local NVME drive for high performance computing, 5th generation
*/
STANDARD5_NVME_DRIVE_HIGH_PERFORMANCE = 'm5dn',

/**
* Standard instances with local NVME drive for high performance computing, 5th generation
*/
M5DN = 'm5dn',

/**
* Memory optimized instances, 3rd generation
*/
Expand Down

0 comments on commit df30d4f

Please sign in to comment.