Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(ec2): add c7gn instance type #26905

Merged
merged 2 commits into from
Aug 28, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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