Interface CfnReplicatorPropsMixin.KafkaClusterProperty

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

@Stability(Stable) public static interface CfnReplicatorPropsMixin.KafkaClusterProperty extends software.amazon.jsii.JsiiSerializable
Information about Kafka Cluster to be used as source / target for replication.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.msk.mixins.*;
 KafkaClusterProperty kafkaClusterProperty = KafkaClusterProperty.builder()
         .amazonMskCluster(AmazonMskClusterProperty.builder()
                 .mskClusterArn("mskClusterArn")
                 .build())
         .vpcConfig(KafkaClusterClientVpcConfigProperty.builder()
                 .securityGroupIds(List.of("securityGroupIds"))
                 .subnetIds(List.of("subnetIds"))
                 .build())
         .build();
 

See Also: