Interface CfnReplicator.ConsumerGroupReplicationProperty

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

@Stability(Stable) public static interface CfnReplicator.ConsumerGroupReplicationProperty extends software.amazon.jsii.JsiiSerializable
Configuration relating to consumer group replication.

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.*;
 ConsumerGroupReplicationProperty consumerGroupReplicationProperty = ConsumerGroupReplicationProperty.builder()
         .consumerGroupsToReplicate(List.of("consumerGroupsToReplicate"))
         // the properties below are optional
         .consumerGroupsToExclude(List.of("consumerGroupsToExclude"))
         .detectAndCopyNewConsumerGroups(false)
         .synchroniseConsumerGroupOffsets(false)
         .build();
 

See Also: