Interface CfnServerlessClusterProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnServerlessClusterProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:13.839Z")
@Stability(Stable)
public interface CfnServerlessClusterProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnServerlessCluster.
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.*;
CfnServerlessClusterProps cfnServerlessClusterProps = CfnServerlessClusterProps.builder()
.clientAuthentication(ClientAuthenticationProperty.builder()
.sasl(SaslProperty.builder()
.iam(IamProperty.builder()
.enabled(false)
.build())
.build())
.build())
.clusterName("clusterName")
.vpcConfigs(List.of(VpcConfigProperty.builder()
.subnetIds(List.of("subnetIds"))
// the properties below are optional
.securityGroups(List.of("securityGroups"))
.build()))
// the properties below are optional
.tags(Map.of(
"tagsKey", "tags"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnServerlessClusterPropsstatic final classAn implementation forCfnServerlessClusterProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClientAuthentication
Includes all client authentication related information.Returns union: either
IResolvableorCfnServerlessCluster.ClientAuthenticationProperty- See Also:
-
getClusterName
The name of the cluster.- See Also:
-
getVpcConfigs
VPC configuration information for the serverless cluster.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnServerlessCluster.VpcConfigProperty>- See Also:
-
getTags
An arbitrary set of tags (key-value pairs) for the cluster.- See Also:
-
builder
- Returns:
- a
CfnServerlessClusterProps.BuilderofCfnServerlessClusterProps
-