public static interface CfnConnector.ApacheKafkaClusterProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnConnector.ApacheKafkaClusterProperty.Builder
A builder for
CfnConnector.ApacheKafkaClusterProperty |
static class |
CfnConnector.ApacheKafkaClusterProperty.Jsii$Proxy
An implementation for
CfnConnector.ApacheKafkaClusterProperty |
Modifier and Type | Method and Description |
---|---|
static CfnConnector.ApacheKafkaClusterProperty.Builder |
builder() |
java.lang.String |
getBootstrapServers()
The bootstrap servers of the cluster.
|
java.lang.Object |
getVpc()
Details of an Amazon VPC which has network connectivity to the Apache Kafka cluster.
|
java.lang.String getBootstrapServers()
java.lang.Object getVpc()
static CfnConnector.ApacheKafkaClusterProperty.Builder builder()