Interface CfnReplicator.TopicReplicationProperty

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

@Stability(Stable) public static interface CfnReplicator.TopicReplicationProperty extends software.amazon.jsii.JsiiSerializable
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.msk.*;
 TopicReplicationProperty topicReplicationProperty = TopicReplicationProperty.builder()
         .topicsToReplicate(List.of("topicsToReplicate"))
         // the properties below are optional
         .copyAccessControlListsForTopics(false)
         .copyTopicConfigurations(false)
         .detectAndCopyNewTopics(false)
         .startingPosition(ReplicationStartingPositionProperty.builder()
                 .type("type")
                 .build())
         .topicsToExclude(List.of("topicsToExclude"))
         .build();
 

See Also: