From 0afff8a6e7256c72e1de0b097f6058f256b1e05b Mon Sep 17 00:00:00 2001 From: Kazuho CryerShinozuka Date: Mon, 4 Mar 2024 02:15:22 +0900 Subject: [PATCH] fix: property name --- packages/aws-cdk-lib/aws-efs/README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/aws-cdk-lib/aws-efs/README.md b/packages/aws-cdk-lib/aws-efs/README.md index e0fac19e1516b..515cce56e8744 100644 --- a/packages/aws-cdk-lib/aws-efs/README.md +++ b/packages/aws-cdk-lib/aws-efs/README.md @@ -91,7 +91,7 @@ new efs.FileSystem(this, 'ReplicationSourceFileSystem1', { enable: true, kmsKey, // optional region: 'us-east-1', // optional - az: 'us-east-1a', // optional, Specifing the AZ means creating a One Zone file system as the replication destination + availabilityZone: 'us-east-1a', // optional, Specifing the AZ means creating a One Zone file system as the replication destination } }); @@ -112,8 +112,6 @@ new efs.FileSystem(this, 'ReplicationSourceFileSystem2', { }); ``` - - ### IAM to control file system data access You can use both IAM identity policies and resource policies to control client access to Amazon EFS resources in a way that is scalable and optimized for cloud environments. Using IAM, you can permit clients to perform specific actions on a file system, including read-only, write, and root access.