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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnReplicatorPropsMixin.ConsumerGroupReplicationPropertystatic final classAn implementation forCfnReplicatorPropsMixin.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 ObjectEnables synchronization of consumer groups to target cluster.default ObjectEnables synchronization of consumer group offsets to target cluster.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConsumerGroupsToExclude
List of regular expression patterns indicating the consumer groups that should not be replicated.- See Also:
-
getConsumerGroupsToReplicate
List of regular expression patterns indicating the consumer groups to copy.- See Also:
-
getDetectAndCopyNewConsumerGroups
Enables synchronization of consumer groups to target cluster.Returns union: either
BooleanorIResolvable- See Also:
-
getSynchroniseConsumerGroupOffsets
Enables synchronization of consumer group offsets to target cluster.The translated offsets will be written to topic __consumer_offsets.
Returns union: either
BooleanorIResolvable- See Also:
-
builder
@Stability(Stable) static CfnReplicatorPropsMixin.ConsumerGroupReplicationProperty.Builder builder()
-