interface CfnServerlessClusterProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MSK.CfnServerlessClusterProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnServerlessClusterProps |
Java | software.amazon.awscdk.services.msk.CfnServerlessClusterProps |
Python | aws_cdk.aws_msk.CfnServerlessClusterProps |
TypeScript | aws-cdk-lib » aws_msk » CfnServerlessClusterProps |
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 { aws_msk as msk } from 'aws-cdk-lib';
const cfnServerlessClusterProps: msk.CfnServerlessClusterProps = {
clientAuthentication: {
sasl: {
iam: {
enabled: false,
},
},
},
clusterName: 'clusterName',
vpcConfigs: [{
subnetIds: ['subnetIds'],
// the properties below are optional
securityGroups: ['securityGroups'],
}],
// the properties below are optional
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| client | IResolvable | Client | Includes all client authentication related information. |
| cluster | string | The name of the cluster. |
| vpc | IResolvable | (IResolvable | Vpc)[] | VPC configuration information for the serverless cluster. |
| tags? | { [string]: string } | An arbitrary set of tags (key-value pairs) for the cluster. |
clientAuthentication
Type:
IResolvable | Client
Includes all client authentication related information.
clusterName
Type:
string
The name of the cluster.
vpcConfigs
Type:
IResolvable | (IResolvable | Vpc)[]
VPC configuration information for the serverless cluster.
tags?
Type:
{ [string]: string }
(optional)
An arbitrary set of tags (key-value pairs) for the cluster.

.NET
Go
Java
Python
TypeScript