Skip to content

Commit

Permalink
feat(ec2): add c7gn instance type (#26905)
Browse files Browse the repository at this point in the history
https://aws.amazon.com/about-aws/whats-new/2023/06/amazon-ec2-c7gn-instances-general-availability/

Spiritual successor of #23147

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
robertd authored Aug 28, 2023
1 parent 37c59a4 commit 8cc9ecb
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions packages/aws-cdk-lib/aws-ec2/lib/instance-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -494,6 +494,18 @@ export enum InstanceClass {
*/
C6GN = 'c6gn',

/**
* Compute optimized instances for high performance computing, 7th generation with Graviton3 processors
* and high network bandwidth capabilities
*/
COMPUTE7_GRAVITON3_HIGH_NETWORK_BANDWIDTH = 'compute7-graviton3-high-network-bandwidth',

/**
* Compute optimized instances for high performance computing, 7th generation with Graviton3 processors
* and high network bandwidth capabilities
*/
C7GN = 'c7gn',

/**
* Storage-optimized instances, 2nd generation
*/
Expand Down Expand Up @@ -1219,6 +1231,8 @@ export class InstanceType {
[InstanceClass.C7G]: 'c7g',
[InstanceClass.COMPUTE7_GRAVITON3_NVME_DRIVE]: 'c7gd',
[InstanceClass.C7GD]: 'c7gd',
[InstanceClass.COMPUTE7_GRAVITON3_HIGH_NETWORK_BANDWIDTH]: 'c7gn',
[InstanceClass.C7GN]: 'c7gn',
[InstanceClass.STORAGE2]: 'd2',
[InstanceClass.D2]: 'd2',
[InstanceClass.STORAGE3]: 'd3',
Expand Down

0 comments on commit 8cc9ecb

Please sign in to comment.