Interface CfnReplicatorPropsMixin.ConsumerGroupReplicationProperty

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

@Stability(Stable) public static interface CfnReplicatorPropsMixin.ConsumerGroupReplicationProperty extends software.amazon.jsii.JsiiSerializable
Details about 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.cfnpropertymixins.services.msk.*;
 ConsumerGroupReplicationProperty consumerGroupReplicationProperty = ConsumerGroupReplicationProperty.builder()
         .consumerGroupsToExclude(List.of("consumerGroupsToExclude"))
         .consumerGroupsToReplicate(List.of("consumerGroupsToReplicate"))
         .detectAndCopyNewConsumerGroups(false)
         .synchroniseConsumerGroupOffsets(false)
         .build();
 

See Also: