Interface CfnServerlessCluster.VpcConfigProperty

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

@Stability(Stable) public static interface CfnServerlessCluster.VpcConfigProperty 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.msk.*;
 VpcConfigProperty vpcConfigProperty = VpcConfigProperty.builder()
         .subnetIds(List.of("subnetIds"))
         // the properties below are optional
         .securityGroups(List.of("securityGroups"))
         .build();