interface ApacheKafkaClusterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KafkaConnect.Mixins.CfnConnectorPropsMixin.ApacheKafkaClusterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskafkaconnect/mixins#CfnConnectorPropsMixin_ApacheKafkaClusterProperty |
Java | software.amazon.awscdk.mixins.preview.services.kafkaconnect.mixins.CfnConnectorPropsMixin.ApacheKafkaClusterProperty |
Python | aws_cdk.mixins_preview.aws_kafkaconnect.mixins.CfnConnectorPropsMixin.ApacheKafkaClusterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kafkaconnect » mixins » CfnConnectorPropsMixin » ApacheKafkaClusterProperty |
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 apacheKafkaClusterProperty: kafkaconnect_mixins.CfnConnectorPropsMixin.ApacheKafkaClusterProperty = {
bootstrapServers: 'bootstrapServers',
vpc: {
securityGroups: ['securityGroups'],
subnets: ['subnets'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| bootstrap | string | The bootstrap servers of the cluster. |
| vpc? | IResolvable | Vpc | Details of an Amazon VPC which has network connectivity to the Apache Kafka cluster. |
bootstrapServers?
Type:
string
(optional)
The bootstrap servers of the cluster.
vpc?
Type:
IResolvable | Vpc
(optional)
Details of an Amazon VPC which has network connectivity to the Apache Kafka cluster.

.NET
Go
Java
Python
TypeScript