Skip to content

Commit f4e58a5

Browse files
authored
Merge branch 'master' into bump-cfnspec/v49.0.0
2 parents 164c4d2 + 88a5204 commit f4e58a5

2 files changed

Lines changed: 12 additions & 3 deletions

File tree

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

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,17 @@ export enum InstanceClass {
574574
/**
575575
* Inferentia Chips based instances for machine learning inference applications, 1st generation
576576
*/
577-
INF1 = 'inf1'
577+
INF1 = 'inf1',
578+
579+
/**
580+
* Macintosh instances built on Apple Mac mini computers, 1st generation with Intel procesors
581+
*/
582+
MACINTOSH1_INTEL = 'mac1',
583+
584+
/**
585+
* Macintosh instances built on Apple Mac mini computers, 1st generation with Intel procesors
586+
*/
587+
MAC1 = 'mac1',
578588
}
579589

580590
/**
@@ -695,7 +705,6 @@ export enum InstanceSize {
695705
* Instance size METAL (metal)
696706
*/
697707
METAL = 'metal',
698-
699708
}
700709

701710
/**

packages/@aws-cdk/aws-ec2/test/instance.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,4 +483,4 @@ test('cause replacement from s3 asset in userdata', () => {
483483
[`InstanceTwoDC29A7A7${hash}`]: expect.objectContaining({ Type: 'AWS::EC2::Instance', Properties: expect.anything() }),
484484
}),
485485
}));
486-
});
486+
});

0 commit comments

Comments
 (0)