Interface ReplicationConfigurationProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
ReplicationConfigurationProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-07-12T19:34:01.576Z") @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();
 
  • Method Details

    • getAvailabilityZone

      @Stability(Stable) @Nullable default String 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

      @Stability(Stable) @Nullable default IFileSystem getDestinationFileSystem()
      The existing destination file system for the replication.

      Default: - None

    • getKmsKey

      @Stability(Stable) @Nullable default IKey getKmsKey()
      AWS KMS key used to protect the encrypted file system.

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

    • getRegion

      @Stability(Stable) @Nullable default String getRegion()
      The AWS Region in which the destination file system is located.

      Default: - the region of the stack

    • builder

      @Stability(Stable) static ReplicationConfigurationProps.Builder builder()
      Returns:
      a ReplicationConfigurationProps.Builder of ReplicationConfigurationProps