Interface ReplicationConfigurationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ReplicationConfigurationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-15T21:09:18.862Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forReplicationConfigurationProps
static final class
An implementation forReplicationConfigurationProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The availability zone name of the destination file system.default IFileSystem
The existing destination file system for the replication.default IKey
AWS KMS key used to protect the encrypted file system.default String
The 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
-