interface KafkaClusterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MSK.Mixins.CfnReplicatorPropsMixin.KafkaClusterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmsk/mixins#CfnReplicatorPropsMixin_KafkaClusterProperty |
Java | software.amazon.awscdk.mixins.preview.services.msk.mixins.CfnReplicatorPropsMixin.KafkaClusterProperty |
Python | aws_cdk.mixins_preview.aws_msk.mixins.CfnReplicatorPropsMixin.KafkaClusterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_msk » mixins » CfnReplicatorPropsMixin » 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 { mixins as msk_mixins } from '@aws-cdk/mixins-preview/aws-msk';
const kafkaClusterProperty: msk_mixins.CfnReplicatorPropsMixin.KafkaClusterProperty = {
amazonMskCluster: {
mskClusterArn: 'mskClusterArn',
},
vpcConfig: {
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| amazon | IResolvable | Amazon | Details of an Amazon MSK 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.
vpcConfig?
Type:
IResolvable | Kafka
(optional)
Details of an Amazon VPC which has network connectivity to the Apache Kafka cluster.

.NET
Go
Java
Python
TypeScript