interface OneZoneFileSystemProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EFS.OneZoneFileSystemProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsefs#OneZoneFileSystemProps |
Java | software.amazon.awscdk.services.efs.OneZoneFileSystemProps |
Python | aws_cdk.aws_efs.OneZoneFileSystemProps |
TypeScript (source) | aws-cdk-lib » aws_efs » OneZoneFileSystemProps |
Properties for configuring ReplicationConfiguration to replicate to a new One Zone file system.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_efs as efs } from 'aws-cdk-lib';
import { aws_kms as kms } from 'aws-cdk-lib';
declare const key: kms.Key;
const oneZoneFileSystemProps: efs.OneZoneFileSystemProps = {
availabilityZone: 'availabilityZone',
region: 'region',
// the properties below are optional
kmsKey: key,
};
Properties
| Name | Type | Description |
|---|---|---|
| availability | string | The availability zone name of the destination file system. |
| region | string | The AWS Region in which the destination file system is located. |
| kms | IKey | AWS KMS key used to protect the encrypted file system. |
availabilityZone
Type:
string
The availability zone name of the destination file system.
One zone file system is used as the destination file system when this property is set.
region
Type:
string
The AWS Region in which the destination file system is located.
kmsKey?
Type:
IKey
(optional, default: use service-managed KMS key for Amazon EFS)
AWS KMS key used to protect the encrypted file system.

.NET
Go
Java
Python
TypeScript (