Interface ServerlessClusterProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
ServerlessClusterProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)", date="2025-09-02T11:25:43.375Z") @Stability(Experimental) public interface ServerlessClusterProps extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for a MSK Serverless Cluster.

Example:

 Vpc vpc;
 ServerlessCluster serverlessCluster = ServerlessCluster.Builder.create(this, "ServerlessCluster")
         .clusterName("MyServerlessCluster")
         .vpcConfigs(List.of(VpcConfig.builder().vpc(vpc).build()))
         .build();
 
  • Method Details