Interface CfnServerlessClusterProps

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:42.696Z") @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();
 
  • Method Details