ExistingFileSystemProps

class aws_cdk.aws_efs.ExistingFileSystemProps(*, destination_file_system)

Bases: object

Properties for configuring ReplicationConfiguration to replicate to an existing file system.

Parameters:

destination_file_system (IFileSystem) – The existing destination file system for the replication.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_efs as efs

# file_system: efs.FileSystem

existing_file_system_props = efs.ExistingFileSystemProps(
    destination_file_system=file_system
)

Attributes

destination_file_system

The existing destination file system for the replication.