@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:40.995Z") @Stability(value=Stable) public interface CfnServerlessClusterProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnServerlessClusterProps.Builder
A builder for
CfnServerlessClusterProps |
static class |
CfnServerlessClusterProps.Jsii$Proxy
An implementation for
CfnServerlessClusterProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnServerlessClusterProps.Builder |
builder() |
Object |
getClientAuthentication()
`AWS::MSK::ServerlessCluster.ClientAuthentication`.
|
String |
getClusterName()
`AWS::MSK::ServerlessCluster.ClusterName`.
|
default Map<String,String> |
getTags()
`AWS::MSK::ServerlessCluster.Tags`.
|
Object |
getVpcConfigs()
`AWS::MSK::ServerlessCluster.VpcConfigs`.
|
@Stability(value=Stable) @NotNull Object getClientAuthentication()
@Stability(value=Stable) @NotNull String getClusterName()
@Stability(value=Stable) @NotNull Object getVpcConfigs()
@Stability(value=Stable) @Nullable default Map<String,String> getTags()
@Stability(value=Stable) static CfnServerlessClusterProps.Builder builder()
CfnServerlessClusterProps.Builder of CfnServerlessClusterPropsCopyright © 2022. All rights reserved.