interface ConsumerGroupReplicationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnReplicatorPropsMixin.ConsumerGroupReplicationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnReplicatorPropsMixin_ConsumerGroupReplicationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnReplicatorPropsMixin.ConsumerGroupReplicationProperty |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnReplicatorPropsMixin.ConsumerGroupReplicationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » 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 { aws_msk as msk } from '@aws-cdk/cfn-property-mixins';
const consumerGroupReplicationProperty: msk.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