interface ApacheKafkaClusterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MSK.CfnReplicator.ApacheKafkaClusterProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnReplicator_ApacheKafkaClusterProperty |
Java | software.amazon.awscdk.services.msk.CfnReplicator.ApacheKafkaClusterProperty |
Python | aws_cdk.aws_msk.CfnReplicator.ApacheKafkaClusterProperty |
TypeScript | aws-cdk-lib » aws_msk » CfnReplicator » ApacheKafkaClusterProperty |
Details of an Apache Kafka cluster.
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 apacheKafkaClusterProperty: msk.CfnReplicator.ApacheKafkaClusterProperty = {
apacheKafkaClusterId: 'apacheKafkaClusterId',
bootstrapBrokerString: 'bootstrapBrokerString',
};
Properties
| Name | Type | Description |
|---|---|---|
| apache | string | The ID of the Apache Kafka cluster. |
| bootstrap | string | The bootstrap broker string of the Apache Kafka cluster. |
apacheKafkaClusterId
Type:
string
The ID of the Apache Kafka cluster.
bootstrapBrokerString
Type:
string
The bootstrap broker string of the Apache Kafka cluster.

.NET
Go
Java
Python
TypeScript