Skip to content

Commit

Permalink
fix: property name
Browse files Browse the repository at this point in the history
  • Loading branch information
badmintoncryer committed Mar 3, 2024
1 parent 8ed03b8 commit 0afff8a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/aws-cdk-lib/aws-efs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
});

Expand All @@ -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.
Expand Down

0 comments on commit 0afff8a

Please sign in to comment.