interface ReplicationInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MSK.CfnReplicator.ReplicationInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnReplicator_ReplicationInfoProperty |
Java | software.amazon.awscdk.services.msk.CfnReplicator.ReplicationInfoProperty |
Python | aws_cdk.aws_msk.CfnReplicator.ReplicationInfoProperty |
TypeScript | aws-cdk-lib » aws_msk » CfnReplicator » ReplicationInfoProperty |
Specifies configuration for replication between a source and target Kafka cluster.
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-lib';
const replicationInfoProperty: msk.CfnReplicator.ReplicationInfoProperty = {
consumerGroupReplication: {
consumerGroupsToReplicate: ['consumerGroupsToReplicate'],
// the properties below are optional
consumerGroupsToExclude: ['consumerGroupsToExclude'],
detectAndCopyNewConsumerGroups: false,
synchroniseConsumerGroupOffsets: false,
},
sourceKafkaClusterArn: 'sourceKafkaClusterArn',
targetCompressionType: 'targetCompressionType',
targetKafkaClusterArn: 'targetKafkaClusterArn',
topicReplication: {
topicsToReplicate: ['topicsToReplicate'],
// the properties below are optional
copyAccessControlListsForTopics: false,
copyTopicConfigurations: false,
detectAndCopyNewTopics: false,
startingPosition: {
type: 'type',
},
topicNameConfiguration: {
type: 'type',
},
topicsToExclude: ['topicsToExclude'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| consumer | IResolvable | Consumer | Configuration relating to consumer group replication. |
| source | string | The ARN of the source Kafka cluster. |
| target | string | The compression type to use when producing records to target cluster. |
| target | string | The ARN of the target Kafka cluster. |
| topic | IResolvable | Topic | Configuration relating to topic replication. |
consumerGroupReplication
Type:
IResolvable | Consumer
Configuration relating to consumer group replication.
sourceKafkaClusterArn
Type:
string
The ARN of the source Kafka cluster.
targetCompressionType
Type:
string
The compression type to use when producing records to target cluster.
targetKafkaClusterArn
Type:
string
The ARN of the target Kafka cluster.
topicReplication
Type:
IResolvable | Topic
Configuration relating to topic replication.

.NET
Go
Java
Python
TypeScript