Interface RegionalFileSystemProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
RegionalFileSystemProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-05T22:26:36.151Z")
@Stability(Stable)
public interface RegionalFileSystemProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.efs.*;
import software.amazon.awscdk.services.kms.*;
Key key;
RegionalFileSystemProps regionalFileSystemProps = RegionalFileSystemProps.builder()
.kmsKey(key)
.region("region")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forRegionalFileSystemPropsstatic final classAn implementation forRegionalFileSystemProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKmsKey
AWS KMS key used to protect the encrypted file system.Default: - use service-managed KMS key for Amazon EFS
-
getRegion
The AWS Region in which the destination file system is located.Default: - the region of the stack
-
builder
- Returns:
- a
RegionalFileSystemProps.BuilderofRegionalFileSystemProps
-