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
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.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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnReplicator.ConsumerGroupReplicationProperty
static final class
An implementation forCfnReplicator.ConsumerGroupReplicationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
List of regular expression patterns indicating the consumer groups that should not be replicated.List of regular expression patterns indicating the consumer groups to copy.default Object
Enables synchronization of consumer groups to target cluster.default Object
Enables synchronization of consumer group offsets to target cluster.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConsumerGroupsToReplicate
List of regular expression patterns indicating the consumer groups to copy.- See Also:
-
getConsumerGroupsToExclude
List of regular expression patterns indicating the consumer groups that should not be replicated.- See Also:
-
getDetectAndCopyNewConsumerGroups
Enables synchronization of consumer groups to target cluster.- See Also:
-
getSynchroniseConsumerGroupOffsets
Enables synchronization of consumer group offsets to target cluster.The translated offsets will be written to topic __consumer_offsets.
- See Also:
-
builder
-