Interface CfnReplicator.KafkaClusterClientVpcConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnReplicator.KafkaClusterClientVpcConfigProperty.Jsii$Proxy
- Enclosing class:
CfnReplicator
@Stability(Stable)
public static interface CfnReplicator.KafkaClusterClientVpcConfigProperty
extends software.amazon.jsii.JsiiSerializable
Details of an Amazon VPC which has network connectivity to the Apache Kafka cluster.
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.msk.*; KafkaClusterClientVpcConfigProperty kafkaClusterClientVpcConfigProperty = KafkaClusterClientVpcConfigProperty.builder() .subnetIds(List.of("subnetIds")) // the properties below are optional .securityGroupIds(List.of("securityGroupIds")) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnReplicator.KafkaClusterClientVpcConfigProperty
static final class
An implementation forCfnReplicator.KafkaClusterClientVpcConfigProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The security groups to attach to the ENIs for the broker nodes.The list of subnets in the client VPC to connect to.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSubnetIds
The list of subnets in the client VPC to connect to.- See Also:
-
getSecurityGroupIds
The security groups to attach to the ENIs for the broker nodes.- See Also:
-
builder
-