Skip to content

Commit 8cc9ecb

Browse files
authored
feat(ec2): add c7gn instance type (#26905)
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*
1 parent 37c59a4 commit 8cc9ecb

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

packages/aws-cdk-lib/aws-ec2/lib/instance-types.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -494,6 +494,18 @@ export enum InstanceClass {
494494
*/
495495
C6GN = 'c6gn',
496496

497+
/**
498+
* Compute optimized instances for high performance computing, 7th generation with Graviton3 processors
499+
* and high network bandwidth capabilities
500+
*/
501+
COMPUTE7_GRAVITON3_HIGH_NETWORK_BANDWIDTH = 'compute7-graviton3-high-network-bandwidth',
502+
503+
/**
504+
* Compute optimized instances for high performance computing, 7th generation with Graviton3 processors
505+
* and high network bandwidth capabilities
506+
*/
507+
C7GN = 'c7gn',
508+
497509
/**
498510
* Storage-optimized instances, 2nd generation
499511
*/
@@ -1219,6 +1231,8 @@ export class InstanceType {
12191231
[InstanceClass.C7G]: 'c7g',
12201232
[InstanceClass.COMPUTE7_GRAVITON3_NVME_DRIVE]: 'c7gd',
12211233
[InstanceClass.C7GD]: 'c7gd',
1234+
[InstanceClass.COMPUTE7_GRAVITON3_HIGH_NETWORK_BANDWIDTH]: 'c7gn',
1235+
[InstanceClass.C7GN]: 'c7gn',
12221236
[InstanceClass.STORAGE2]: 'd2',
12231237
[InstanceClass.D2]: 'd2',
12241238
[InstanceClass.STORAGE3]: 'd3',

0 commit comments

Comments
 (0)