@Stability(value=Stable)
public static interface CfnConnector.KafkaClusterProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnConnector.KafkaClusterProperty.Builder
A builder for
CfnConnector.KafkaClusterProperty |
static class |
CfnConnector.KafkaClusterProperty.Jsii$Proxy
An implementation for
CfnConnector.KafkaClusterProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnConnector.KafkaClusterProperty.Builder |
builder() |
Object |
getApacheKafkaCluster()
The Apache Kafka cluster to which the connector is connected.
|
@Stability(value=Stable) @NotNull Object getApacheKafkaCluster()
@Stability(value=Stable) static CfnConnector.KafkaClusterProperty.Builder builder()
Copyright © 2022. All rights reserved.