interface TopicReplicationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MSK.Mixins.CfnReplicatorPropsMixin.TopicReplicationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmsk/mixins#CfnReplicatorPropsMixin_TopicReplicationProperty |
Java | software.amazon.awscdk.mixins.preview.services.msk.mixins.CfnReplicatorPropsMixin.TopicReplicationProperty |
Python | aws_cdk.mixins_preview.aws_msk.mixins.CfnReplicatorPropsMixin.TopicReplicationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_msk » mixins » CfnReplicatorPropsMixin » TopicReplicationProperty |
Details about topic 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 topicReplicationProperty: msk_mixins.CfnReplicatorPropsMixin.TopicReplicationProperty = {
copyAccessControlListsForTopics: false,
copyTopicConfigurations: false,
detectAndCopyNewTopics: false,
startingPosition: {
type: 'type',
},
topicNameConfiguration: {
type: 'type',
},
topicsToExclude: ['topicsToExclude'],
topicsToReplicate: ['topicsToReplicate'],
};
Properties
| Name | Type | Description |
|---|---|---|
| copy | boolean | IResolvable | Whether to periodically configure remote topic ACLs to match their corresponding upstream topics. |
| copy | boolean | IResolvable | Whether to periodically configure remote topics to match their corresponding upstream topics. |
| detect | boolean | IResolvable | Whether to periodically check for new topics and partitions. |
| starting | IResolvable | Replication | Specifies the position in the topics to start replicating from. |
| topic | IResolvable | Replication | Configuration for specifying replicated topic names will be the same as their corresponding upstream topics or prefixed with source cluster alias. |
| topics | string[] | List of regular expression patterns indicating the topics that should not be replicated. |
| topics | string[] | List of regular expression patterns indicating the topics to copy. |
copyAccessControlListsForTopics?
Type:
boolean | IResolvable
(optional)
Whether to periodically configure remote topic ACLs to match their corresponding upstream topics.
copyTopicConfigurations?
Type:
boolean | IResolvable
(optional)
Whether to periodically configure remote topics to match their corresponding upstream topics.
detectAndCopyNewTopics?
Type:
boolean | IResolvable
(optional)
Whether to periodically check for new topics and partitions.
startingPosition?
Type:
IResolvable | Replication
(optional)
Specifies the position in the topics to start replicating from.
topicNameConfiguration?
Type:
IResolvable | Replication
(optional)
Configuration for specifying replicated topic names will be the same as their corresponding upstream topics or prefixed with source cluster alias.
topicsToExclude?
Type:
string[]
(optional)
List of regular expression patterns indicating the topics that should not be replicated.
topicsToReplicate?
Type:
string[]
(optional)
List of regular expression patterns indicating the topics to copy.

.NET
Go
Java
Python
TypeScript