interface ExistingFileSystemProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EFS.ExistingFileSystemProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsefs#ExistingFileSystemProps |
Java | software.amazon.awscdk.services.efs.ExistingFileSystemProps |
Python | aws_cdk.aws_efs.ExistingFileSystemProps |
TypeScript (source) | aws-cdk-lib » aws_efs » ExistingFileSystemProps |
Properties for configuring ReplicationConfiguration to replicate to an existing 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';
declare const fileSystem: efs.FileSystem;
const existingFileSystemProps: efs.ExistingFileSystemProps = {
destinationFileSystem: fileSystem,
};
Properties
Name | Type | Description |
---|---|---|
destination | IFile | The existing destination file system for the replication. |
destinationFileSystem
Type:
IFile
The existing destination file system for the replication.