Skip to content

Commit

Permalink
feat(ec2): include p4d instance class (#17147)
Browse files Browse the repository at this point in the history
----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*

Instance class is missing p4d instance class. This PR adds that instance class.
  • Loading branch information
vishalkg authored Oct 28, 2021
1 parent 4b32a25 commit 6e13adc
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion packages/@aws-cdk/aws-ec2/lib/instance-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -452,10 +452,20 @@ export enum InstanceClass {
PARALLEL3 = 'p3',

/**
* Parallel-processing optimized instances, 3nd generation
* Parallel-processing optimized instances, 3rd generation
*/
P3 = 'p3',

/**
* Parallel-processing optimized instances, 4th generation
*/
PARALLEL4 = 'p4d',

/**
* Parallel-processing optimized instances, 4th generation
*/
P4D = 'p4d',

/**
* Arm processor based instances, 1st generation
*/
Expand Down

0 comments on commit 6e13adc

Please sign in to comment.