interface ConsumerGroupReplicationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MSK.Mixins.CfnReplicatorPropsMixin.ConsumerGroupReplicationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmsk/mixins#CfnReplicatorPropsMixin_ConsumerGroupReplicationProperty |
Java | software.amazon.awscdk.mixins.preview.services.msk.mixins.CfnReplicatorPropsMixin.ConsumerGroupReplicationProperty |
Python | aws_cdk.mixins_preview.aws_msk.mixins.CfnReplicatorPropsMixin.ConsumerGroupReplicationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_msk » mixins » CfnReplicatorPropsMixin » ConsumerGroupReplicationProperty |
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 { mixins as msk_mixins } from '@aws-cdk/mixins-preview/aws-msk';
const consumerGroupReplicationProperty: msk_mixins.CfnReplicatorPropsMixin.ConsumerGroupReplicationProperty = {
consumerGroupsToExclude: ['consumerGroupsToExclude'],
consumerGroupsToReplicate: ['consumerGroupsToReplicate'],
detectAndCopyNewConsumerGroups: false,
synchroniseConsumerGroupOffsets: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| consumer | string[] | List of regular expression patterns indicating the consumer groups that should not be replicated. |
| consumer | string[] | List of regular expression patterns indicating the consumer groups to copy. |
| detect | boolean | IResolvable | Enables synchronization of consumer groups to target cluster. |
| synchronise | boolean | IResolvable | Enables synchronization of consumer group offsets to target cluster. |
consumerGroupsToExclude?
Type:
string[]
(optional)
List of regular expression patterns indicating the consumer groups that should not be replicated.
consumerGroupsToReplicate?
Type:
string[]
(optional)
List of regular expression patterns indicating the consumer groups to copy.
detectAndCopyNewConsumerGroups?
Type:
boolean | IResolvable
(optional)
Enables synchronization of consumer groups to target cluster.
synchroniseConsumerGroupOffsets?
Type:
boolean | IResolvable
(optional)
Enables synchronization of consumer group offsets to target cluster.
The translated offsets will be written to topic __consumer_offsets.

.NET
Go
Java
Python
TypeScript