Interface CfnFileSystemPropsMixin.ReplicationConfigurationProperty

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

@Stability(Stable) public static interface CfnFileSystemPropsMixin.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.cfnpropertymixins.services.efs.*;
 ReplicationConfigurationProperty replicationConfigurationProperty = ReplicationConfigurationProperty.builder()
         .destinations(List.of(ReplicationDestinationProperty.builder()
                 .availabilityZoneName("availabilityZoneName")
                 .fileSystemId("fileSystemId")
                 .kmsKeyId("kmsKeyId")
                 .region("region")
                 .roleArn("roleArn")
                 .status("status")
                 .statusMessage("statusMessage")
                 .build()))
         .build();
 

See Also: