Skip to content

Commit 28c6a22

Browse files
authoredMar 13, 2025··
feat(ecs): backfill missing enums for ecs (#33644)
### Description of changes backfill missing enums for ecs ### 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 a7633a9 commit 28c6a22

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎packages/aws-cdk-lib/aws-ecs/lib/base/service-managed-volume.ts

+4
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,10 @@ export enum FileSystemType {
165165
* xfs type
166166
*/
167167
XFS = 'xfs',
168+
/**
169+
* ntfs type
170+
*/
171+
NTFS = 'ntfs',
168172
}
169173

170174
/**

0 commit comments

Comments
 (0)
Please sign in to comment.