Class ExistingFileSystemProps
Properties for configuring ReplicationConfiguration to replicate to an existing file system.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.EFS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ExistingFileSystemProps : IExistingFileSystemProps
Syntax (vb)
Public Class ExistingFileSystemProps Implements IExistingFileSystemProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EFS;
using Amazon.CDK.Interfaces.EFS;
IFileSystemRef fileSystemRef;
var existingFileSystemProps = new ExistingFileSystemProps {
DestinationFileSystem = fileSystemRef
};
Synopsis
Constructors
| ExistingFileSystemProps() | Properties for configuring ReplicationConfiguration to replicate to an existing file system. |
Properties
| DestinationFileSystem | The existing destination file system for the replication. |
Constructors
ExistingFileSystemProps()
Properties for configuring ReplicationConfiguration to replicate to an existing file system.
public ExistingFileSystemProps()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EFS;
using Amazon.CDK.Interfaces.EFS;
IFileSystemRef fileSystemRef;
var existingFileSystemProps = new ExistingFileSystemProps {
DestinationFileSystem = fileSystemRef
};
Properties
DestinationFileSystem
The existing destination file system for the replication.
public IFileSystemRef DestinationFileSystem { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated