From dd7514f79c06bd9e39d09989d50ca45335dde8b3 Mon Sep 17 00:00:00 2001 From: kazuho cryer-shinozuka Date: Tue, 2 Jan 2024 16:36:21 +0900 Subject: [PATCH] Update packages/aws-cdk-lib/aws-efs/README.md Co-authored-by: Luca Pizzini --- packages/aws-cdk-lib/aws-efs/README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/packages/aws-cdk-lib/aws-efs/README.md b/packages/aws-cdk-lib/aws-efs/README.md index d0bbddb40d8a0..cdb48d3d593e9 100644 --- a/packages/aws-cdk-lib/aws-efs/README.md +++ b/packages/aws-cdk-lib/aws-efs/README.md @@ -64,9 +64,13 @@ new efs.FileSystem(this, 'OneZoneFileSystem', { }) ``` -⚠️ Performance Mode Compatibility: The oneZone option is not compatible with the MAX_IO performance mode. An error will be thrown if these two options are used together. -⚠️ Availability Zone Selection: When oneZone is enabled, the file system is automatically placed in the first availability zone of the VPC. It is not currently possible to specify a different availability zone. -⚠️ Mount Target Creation: When using oneZone, mount targets will be created only in the specified availability zone. This is to prevent deployment failures due to cross-AZ configurations. +⚠️ One Zone file systems are not compatible with the MAX_IO performance mode. + +⚠️ When `oneZone` is enabled, the file system is automatically placed in the first availability zone of the VPC. +It is not currently possible to specify a different availability zone. + +⚠️ When `oneZone` is enabled, mount targets will be created only in the specified availability zone. +This is to prevent deployment failures due to cross-AZ configurations. ### IAM to control file system data access