Show / Hide Table of Contents

Interface IRegionalFileSystemProps

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

Namespace: Amazon.CDK.AWS.EFS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IRegionalFileSystemProps
Syntax (vb)
Public Interface 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

Properties

KmsKey

AWS KMS key used to protect the encrypted file system.

Region

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

Properties

KmsKey

AWS KMS key used to protect the encrypted file system.

IKey? KmsKey { get; }
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.

string? Region { get; }
Property Value

string

Remarks

Default: - the region of the stack

Back to top Generated by DocFX