File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
packages/aws-cdk-lib/aws-ec2/lib Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -472,6 +472,16 @@ export enum InstanceClass {
472472 */
473473 R7A = 'r7a' ,
474474
475+ /**
476+ * Memory optimized instances based on 5th generation AMD EPYC (formerly code named Turin), 8th generation
477+ */
478+ MEMORY8_AMD = 'memory8-amd' ,
479+
480+ /**
481+ * Memory optimized instances based on 5th generation AMD EPYC (formerly code named Turin), 8th generation
482+ */
483+ R8A = 'r8a' ,
484+
475485 /**
476486 * Memory optimized instances with Graviton4 processors
477487 */
@@ -1897,6 +1907,8 @@ export class InstanceType {
18971907 [ InstanceClass . R7IZ ] : 'r7iz' ,
18981908 [ InstanceClass . MEMORY7_AMD ] : 'r7a' ,
18991909 [ InstanceClass . R7A ] : 'r7a' ,
1910+ [ InstanceClass . MEMORY8_AMD ] : 'r8a' ,
1911+ [ InstanceClass . R8A ] : 'r8a' ,
19001912 [ InstanceClass . MEMORY8_GRAVITON ] : 'r8g' ,
19011913 [ InstanceClass . R8G ] : 'r8g' ,
19021914 [ InstanceClass . MEMORY8_GRAVITON4_NVME_DRIVE ] : 'r8gd' ,
You can’t perform that action at this time.
0 commit comments