Interface CfnFileSystem.ReplicationConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFileSystem.ReplicationConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnFileSystem

@Stability(Stable) public static interface CfnFileSystem.ReplicationConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Describes the replication configuration for a specific 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.*;
 ReplicationConfigurationProperty replicationConfigurationProperty = ReplicationConfigurationProperty.builder()
         .destinations(List.of(ReplicationDestinationProperty.builder()
                 .availabilityZoneName("availabilityZoneName")
                 .fileSystemId("fileSystemId")
                 .kmsKeyId("kmsKeyId")
                 .region("region")
                 .build()))
         .build();
 

See Also: