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();
 
  • Method Details

    • getClientAuthentication

      @Stability(Stable) @NotNull Object getClientAuthentication()
      `AWS::MSK::ServerlessCluster.ClientAuthentication`.
    • getClusterName

      @Stability(Stable) @NotNull String getClusterName()
      `AWS::MSK::ServerlessCluster.ClusterName`.
    • getVpcConfigs

      @Stability(Stable) @NotNull Object getVpcConfigs()
      `AWS::MSK::ServerlessCluster.VpcConfigs`.
    • getTags

      @Stability(Stable) @Nullable default Map<String,String> getTags()
      `AWS::MSK::ServerlessCluster.Tags`.
    • builder

      @Stability(Stable) static CfnServerlessClusterProps.Builder builder()
      Returns:
      a CfnServerlessClusterProps.Builder of CfnServerlessClusterProps