Skip to content

Commit b06f120

Browse files
authoredNov 30, 2021
feat(ec2): add m6a instances (#17764)
New `m6a` instances release notes: https://aws.amazon.com/blogs/aws/new-amazon-ec2-m6a-instances-powered-by-3rd-gen-amd-epyc-processors/ ![image](https://user-images.githubusercontent.com/31543/143961046-99e865fd-e79d-420e-8e27-02963967454b.png) CFN docs have already been updated: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instancetype ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 245c059 commit b06f120

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
 

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

+10
Original file line numberDiff line numberDiff line change
@@ -546,6 +546,16 @@ export enum InstanceClass {
546546
*/
547547
M6I = 'm6i',
548548

549+
/**
550+
* Standard instances based on 3rd Gen AMD EPYC processors, 6th generation.
551+
*/
552+
STANDARD6_AMD = 'm6a',
553+
554+
/**
555+
* Standard instances based on 3rd Gen AMD EPYC processors, 6th generation.
556+
*/
557+
M6A = 'm6a',
558+
549559
/**
550560
* Standard instances, 6th generation with Graviton2 processors and local NVME drive
551561
*/

0 commit comments

Comments
 (0)
Please sign in to comment.