interface KafkaClusterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MSK.CfnReplicator.KafkaClusterProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnReplicator_KafkaClusterProperty |
Java | software.amazon.awscdk.services.msk.CfnReplicator.KafkaClusterProperty |
Python | aws_cdk.aws_msk.CfnReplicator.KafkaClusterProperty |
TypeScript | aws-cdk-lib » aws_msk » CfnReplicator » KafkaClusterProperty |
Information about Kafka Cluster to be used as source / target for 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-lib';
const kafkaClusterProperty: msk.CfnReplicator.KafkaClusterProperty = {
amazonMskCluster: {
mskClusterArn: 'mskClusterArn',
},
apacheKafkaCluster: {
apacheKafkaClusterId: 'apacheKafkaClusterId',
bootstrapBrokerString: 'bootstrapBrokerString',
},
clientAuthentication: {
saslScram: {
mechanism: 'mechanism',
secretArn: 'secretArn',
},
},
encryptionInTransit: {
encryptionType: 'encryptionType',
// the properties below are optional
rootCaCertificate: 'rootCaCertificate',
},
vpcConfig: {
subnetIds: ['subnetIds'],
// the properties below are optional
securityGroupIds: ['securityGroupIds'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| amazon | IResolvable | Amazon | Details of an Amazon MSK Cluster. |
| apache | IResolvable | Apache | Details of an Apache Kafka cluster. |
| client | IResolvable | Kafka | Details of the client authentication used by the Apache Kafka cluster. |
| encryption | IResolvable | Kafka | Details of encryption in transit to the Apache Kafka cluster. |
| vpc | IResolvable | Kafka | Details of an Amazon VPC which has network connectivity to the Apache Kafka cluster. |
amazonMskCluster?
Type:
IResolvable | Amazon
(optional)
Details of an Amazon MSK Cluster.
apacheKafkaCluster?
Type:
IResolvable | Apache
(optional)
Details of an Apache Kafka cluster.
clientAuthentication?
Type:
IResolvable | Kafka
(optional)
Details of the client authentication used by the Apache Kafka cluster.
encryptionInTransit?
Type:
IResolvable | Kafka
(optional)
Details of encryption in transit to the Apache Kafka cluster.
vpcConfig?
Type:
IResolvable | Kafka
(optional)
Details of an Amazon VPC which has network connectivity to the Apache Kafka cluster.

.NET
Go
Java
Python
TypeScript