interface KafkaClusterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KafkaConnect.Mixins.CfnConnectorPropsMixin.KafkaClusterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskafkaconnect/mixins#CfnConnectorPropsMixin_KafkaClusterProperty |
Java | software.amazon.awscdk.mixins.preview.services.kafkaconnect.mixins.CfnConnectorPropsMixin.KafkaClusterProperty |
Python | aws_cdk.mixins_preview.aws_kafkaconnect.mixins.CfnConnectorPropsMixin.KafkaClusterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kafkaconnect » mixins » CfnConnectorPropsMixin » KafkaClusterProperty |
The details of the Apache Kafka cluster to which the connector is connected.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as kafkaconnect_mixins } from '@aws-cdk/mixins-preview/aws-kafkaconnect';
const kafkaClusterProperty: kafkaconnect_mixins.CfnConnectorPropsMixin.KafkaClusterProperty = {
apacheKafkaCluster: {
bootstrapServers: 'bootstrapServers',
vpc: {
securityGroups: ['securityGroups'],
subnets: ['subnets'],
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| apache | IResolvable | Apache | The Apache Kafka cluster to which the connector is connected. |
apacheKafkaCluster?
Type:
IResolvable | Apache
(optional)
The Apache Kafka cluster to which the connector is connected.

.NET
Go
Java
Python
TypeScript