Skip to content

Commit

Permalink
feat(ec2): add r5b instance type to instance class (#12027)
Browse files Browse the repository at this point in the history
This adds the missing r5b enum entries. Fixes #12025

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
tpunder committed Dec 12, 2020
1 parent b559a38 commit d276b02
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions packages/@aws-cdk/aws-ec2/lib/instance-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,16 @@ export enum InstanceClass {
*/
R5AD = 'r5a',

/**
* Memory optimized instances that are also EBS-optimized, 5th generation
*/
MEMORY5_EBS_OPTIMIZED = 'r5b',

/**
* Memory optimized instances that are also EBS-optimized, 5th generation
*/
R5B = 'r5b',

/**
* Memory optimized instances, 6th generation with Graviton2 processors
*/
Expand Down

0 comments on commit d276b02

Please sign in to comment.