Skip to content

Commit 845be10

Browse files
authoredNov 30, 2021
feat(ec2): add m5zn instances (#17757)
`m5zn` instances release notes: https://aws.amazon.com/blogs/aws/new-ec2-m5zn-instances-fastest-intel-xeon-scalable-cpu-in-the-cloud/ Docs have already been updated a while ago: 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 a01678b commit 845be10

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
@@ -88,6 +88,16 @@ export enum InstanceClass {
8888
*/
8989
M5DN = 'm5dn',
9090

91+
/**
92+
* Standard instances with high memory and compute capacity based on Intel Xeon Scalable (Cascade Lake) processors, 5nd generation
93+
*/
94+
STANDARD5_HIGH_COMPUTE = 'm5zn',
95+
96+
/**
97+
* Standard instances with high memory and compute capacity based on Intel Xeon Scalable (Cascade Lake) processors, 5nd generation
98+
*/
99+
M5ZN = 'm5zn',
100+
91101
/**
92102
* Memory optimized instances, 3rd generation
93103
*/

0 commit comments

Comments
 (0)
Please sign in to comment.