interface CfnServerlessClusterMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MSK.Mixins.CfnServerlessClusterMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmsk/mixins#CfnServerlessClusterMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.msk.mixins.CfnServerlessClusterMixinProps |
Python | aws_cdk.mixins_preview.aws_msk.mixins.CfnServerlessClusterMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_msk » mixins » CfnServerlessClusterMixinProps |
Properties for CfnServerlessClusterPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as msk_mixins } from '@aws-cdk/mixins-preview/aws-msk';
const cfnServerlessClusterMixinProps: msk_mixins.CfnServerlessClusterMixinProps = {
clientAuthentication: {
sasl: {
iam: {
enabled: false,
},
},
},
clusterName: 'clusterName',
tags: {
tagsKey: 'tags',
},
vpcConfigs: [{
securityGroups: ['securityGroups'],
subnetIds: ['subnetIds'],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| client | IResolvable | Client | Includes all client authentication related information. |
| cluster | string | The name of the cluster. |
| tags? | { [string]: string } | An arbitrary set of tags (key-value pairs) for the cluster. |
| vpc | IResolvable | (IResolvable | Vpc)[] | VPC configuration information for the serverless cluster. |
clientAuthentication?
Type:
IResolvable | Client
(optional)
Includes all client authentication related information.
clusterName?
Type:
string
(optional)
The name of the cluster.
tags?
Type:
{ [string]: string }
(optional)
An arbitrary set of tags (key-value pairs) for the cluster.
vpcConfigs?
Type:
IResolvable | (IResolvable | Vpc)[]
(optional)
VPC configuration information for the serverless cluster.

.NET
Go
Java
Python
TypeScript