enum BrokerType
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MSK.Alpha.BrokerType |
Go | github.com/aws/aws-cdk-go/awscdkmskalpha/v2#BrokerType |
Java | software.amazon.awscdk.services.msk.alpha.BrokerType |
Python | aws_cdk.aws_msk_alpha.BrokerType |
TypeScript (source) | @aws-cdk/aws-msk-alpha » BrokerType |
The broker type for the cluster.
Example
declare const vpc: ec2.Vpc;
const expressCluster = new msk.Cluster(this, 'ExpressCluster', {
clusterName: 'MyExpressCluster',
kafkaVersion: msk.KafkaVersion.V3_8_X,
vpc,
brokerType: msk.BrokerType.EXPRESS,
instanceType: ec2.InstanceType.of(
ec2.InstanceClass.M7G,
ec2.InstanceSize.XLARGE,
),
});
Members
| Name | Description |
|---|---|
| STANDARD | Standard brokers provide high-availability guarantees. |
| EXPRESS | Express brokers are a low-cost option for development, testing, and workloads that don't require the high availability guarantees of standard MSK cluster. |
STANDARD
Standard brokers provide high-availability guarantees.
EXPRESS
Express brokers are a low-cost option for development, testing, and workloads that don't require the high availability guarantees of standard MSK cluster.

.NET
Go
Java
Python
TypeScript (