Interface ServerlessClusterProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ServerlessClusterProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-05T22:26:50.253Z")
@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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forServerlessClusterPropsstatic final classAn implementation forServerlessClusterProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getVpcConfigs
(experimental) The configuration of the Amazon VPCs for the cluster.You can specify up to 5 VPC configurations.
-
getClusterName
(experimental) The physical name of the cluster.Default: - auto generate
-
builder
- Returns:
- a
ServerlessClusterProps.BuilderofServerlessClusterProps
-