interface FileSystemProtectionProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.EFS.CfnFileSystem.FileSystemProtectionProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsefs#CfnFileSystem_FileSystemProtectionProperty | 
|  Java | software.amazon.awscdk.services.efs.CfnFileSystem.FileSystemProtectionProperty | 
|  Python | aws_cdk.aws_efs.CfnFileSystem.FileSystemProtectionProperty | 
|  TypeScript | aws-cdk-lib»aws_efs»CfnFileSystem»FileSystemProtectionProperty | 
Describes the protection on the file system.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_efs as efs } from 'aws-cdk-lib';
const fileSystemProtectionProperty: efs.CfnFileSystem.FileSystemProtectionProperty = {
  replicationOverwriteProtection: 'replicationOverwriteProtection',
};
Properties
| Name | Type | Description | 
|---|---|---|
| replication | string | The status of the file system's replication overwrite protection. | 
replicationOverwriteProtection?
Type:
string
(optional)
The status of the file system's replication overwrite protection.
- ENABLED– The file system cannot be used as the destination file system in a replication configuration. The file system is writeable. Replication overwrite protection is- ENABLEDby default.
- DISABLED– The file system can be used as the destination file system in a replication configuration. The file system is read-only and can only be modified by EFS replication.
- REPLICATING– The file system is being used as the destination file system in a replication configuration. The file system is read-only and is modified only by EFS replication.
If the replication configuration is deleted, the file system's replication overwrite protection is re-enabled, the file system becomes writeable.
