RegionalFileSystemProps

class aws_cdk.aws_efs.RegionalFileSystemProps(*, kms_key=None, region=None)

Bases: object

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

Parameters:
  • kms_key (Optional[IKey]) – AWS KMS key used to protect the encrypted file system. Default: - use service-managed KMS key for Amazon EFS

  • region (Optional[str]) – The AWS Region in which the destination file system is located. Default: - the region of the stack

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_efs as efs
from aws_cdk import aws_kms as kms

# key: kms.Key

regional_file_system_props = efs.RegionalFileSystemProps(
    kms_key=key,
    region="region"
)

Attributes

kms_key

AWS KMS key used to protect the encrypted file system.

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

region

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

Default:
  • the region of the stack