Interface CfnConnector.ApacheKafkaClusterProperty

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

@Stability(Stable) public static interface CfnConnector.ApacheKafkaClusterProperty 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.*;
 ApacheKafkaClusterProperty apacheKafkaClusterProperty = ApacheKafkaClusterProperty.builder()
         .bootstrapServers("bootstrapServers")
         .vpc(VpcProperty.builder()
                 .securityGroups(List.of("securityGroups"))
                 .subnets(List.of("subnets"))
                 .build())
         .build();