Interface ReplicationConfigurationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ReplicationConfigurationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:40:50.977Z")
@Stability(Stable)
public interface ReplicationConfigurationProps
extends software.amazon.jsii.JsiiSerializable
Properties for the ReplicationConfiguration.
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.*;
FileSystem fileSystem;
Key key;
ReplicationConfigurationProps replicationConfigurationProps = ReplicationConfigurationProps.builder()
.availabilityZone("availabilityZone")
.destinationFileSystem(fileSystem)
.kmsKey(key)
.region("region")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forReplicationConfigurationPropsstatic final classAn implementation forReplicationConfigurationProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe availability zone name of the destination file system.default IFileSystemThe existing destination file system for the replication.default IKeyAWS KMS key used to protect the encrypted file system.default StringThe AWS Region in which the destination file system is located.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAvailabilityZone
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.
Default: - no availability zone is set
-
getDestinationFileSystem
The existing destination file system for the replication.Default: - None
-
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
-