Interface IOneZoneFileSystemProps
Properties for configuring ReplicationConfiguration to replicate to a new One Zone file system.
Namespace: Amazon.CDK.AWS.EFS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IOneZoneFileSystemProps
Syntax (vb)
Public Interface IOneZoneFileSystemProps
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 oneZoneFileSystemProps = new OneZoneFileSystemProps {
AvailabilityZone = "availabilityZone",
Region = "region",
// the properties below are optional
KmsKey = key
};
Synopsis
Properties
| AvailabilityZone | The availability zone name of the destination file system. |
| KmsKey | AWS KMS key used to protect the encrypted file system. |
| Region | The AWS Region in which the destination file system is located. |
Properties
AvailabilityZone
The availability zone name of the destination file system.
string AvailabilityZone { get; }
Property Value
Remarks
One zone file system is used as the destination file system when this property is set.
KmsKey
AWS KMS key used to protect the encrypted file system.
IKey? KmsKey { get; }
Property Value
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
Remarks
ExampleMetadata: fixture=_generated