Show / Hide Table of Contents

Class ExistingFileSystemProps

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

Inheritance
object
ExistingFileSystemProps
Implements
IExistingFileSystemProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

IFileSystemRef

Remarks

ExampleMetadata: fixture=_generated

Implements

IExistingFileSystemProps
Back to top Generated by DocFX