Skip to content

Commit f67a88b

Browse files
authoredMar 13, 2025··
feat(eks): backfill missing enums for eks (#33646)
### Description of changes backfill missing enums for eks ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent f9c533b commit f67a88b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎packages/aws-cdk-lib/aws-eks/lib/managed-nodegroup.ts

+4
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,10 @@ export enum CapacityType {
103103
* on-demand instances
104104
*/
105105
ON_DEMAND = 'ON_DEMAND',
106+
/**
107+
* capacity block instances
108+
*/
109+
CAPACITY_BLOCK = 'CAPACITY_BLOCK',
106110
}
107111

108112
/**

0 commit comments

Comments
 (0)
Please sign in to comment.