Interface CfnConnector.KafkaClusterProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConnector.KafkaClusterProperty.Jsii$Proxy
Enclosing class:
CfnConnector

@Stability(Stable) public static interface CfnConnector.KafkaClusterProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.kafkaconnect.*;
 KafkaClusterProperty kafkaClusterProperty = KafkaClusterProperty.builder()
         .apacheKafkaCluster(ApacheKafkaClusterProperty.builder()
                 .bootstrapServers("bootstrapServers")
                 .vpc(VpcProperty.builder()
                         .securityGroups(List.of("securityGroups"))
                         .subnets(List.of("subnets"))
                         .build())
                 .build())
         .build();