Interface CfnServerlessClusterProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnServerlessClusterProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)",
date="2023-05-31T18:44:14.293Z")
@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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnServerlessClusterProps
static final class
An implementation forCfnServerlessClusterProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClientAuthentication
`AWS::MSK::ServerlessCluster.ClientAuthentication`. -
getClusterName
`AWS::MSK::ServerlessCluster.ClusterName`. -
getVpcConfigs
`AWS::MSK::ServerlessCluster.VpcConfigs`. -
getTags
`AWS::MSK::ServerlessCluster.Tags`. -
builder
- Returns:
- a
CfnServerlessClusterProps.Builder
ofCfnServerlessClusterProps
-