Show / Hide Table of Contents

Class RegionalFileSystemProps

Properties for configuring ReplicationConfiguration to replicate to a new Regional file system.

Inheritance
object
RegionalFileSystemProps
Implements
IRegionalFileSystemProps
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 RegionalFileSystemProps : IRegionalFileSystemProps
Syntax (vb)
Public Class RegionalFileSystemProps Implements IRegionalFileSystemProps
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.AWS.KMS;

            Key key;

            var regionalFileSystemProps = new RegionalFileSystemProps {
                KmsKey = key,
                Region = "region"
            };

Synopsis

Constructors

RegionalFileSystemProps()

Properties for configuring ReplicationConfiguration to replicate to a new Regional file system.

Properties

KmsKey

AWS KMS key used to protect the encrypted file system.

Region

The AWS Region in which the destination file system is located.

Constructors

RegionalFileSystemProps()

Properties for configuring ReplicationConfiguration to replicate to a new Regional file system.

public RegionalFileSystemProps()
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.AWS.KMS;

            Key key;

            var regionalFileSystemProps = new RegionalFileSystemProps {
                KmsKey = key,
                Region = "region"
            };

Properties

KmsKey

AWS KMS key used to protect the encrypted file system.

public IKey? KmsKey { get; set; }
Property Value

IKey

Remarks

Default: - use service-managed KMS key for Amazon EFS

Region

The AWS Region in which the destination file system is located.

public string? Region { get; set; }
Property Value

string

Remarks

Default: - the region of the stack

Implements

IRegionalFileSystemProps
Back to top Generated by DocFX