interface ApacheKafkaClusterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.KafkaConnect.CfnConnectorPropsMixin.ApacheKafkaClusterProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awskafkaconnect#CfnConnectorPropsMixin_ApacheKafkaClusterProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.kafkaconnect.CfnConnectorPropsMixin.ApacheKafkaClusterProperty |
Python | aws_cdk.cfn_property_mixins.aws_kafkaconnect.CfnConnectorPropsMixin.ApacheKafkaClusterProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_kafkaconnect » 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 { aws_kafkaconnect as kafkaconnect } from '@aws-cdk/cfn-property-mixins';
const apacheKafkaClusterProperty: kafkaconnect.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