interface RegionalFileSystemProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EFS.RegionalFileSystemProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsefs#RegionalFileSystemProps |
Java | software.amazon.awscdk.services.efs.RegionalFileSystemProps |
Python | aws_cdk.aws_efs.RegionalFileSystemProps |
TypeScript (source) | aws-cdk-lib » aws_efs » RegionalFileSystemProps |
Properties for configuring ReplicationConfiguration to replicate to a new Regional 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 regionalFileSystemProps: efs.RegionalFileSystemProps = {
kmsKey: key,
region: 'region',
};
Properties
Name | Type | Description |
---|---|---|
kms | IKey | AWS KMS key used to protect the encrypted file system. |
region? | 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.
region?
Type:
string
(optional, default: the region of the stack)
The AWS Region in which the destination file system is located.