Skip to content

Get Bootstrap Brokers

kafka_get_bootstrap_brokers R Documentation

A list of brokers that a client application can use to bootstrap

Description

A list of brokers that a client application can use to bootstrap. This list doesn't necessarily include all of the brokers in the cluster. The following Python 3.6 example shows how you can use the Amazon Resource Name (ARN) of a cluster to get its bootstrap brokers. If you don't know the ARN of your cluster, you can use the list_clusters operation to get the ARNs of all the clusters in this account and Region.

Usage

kafka_get_bootstrap_brokers(ClusterArn)

Arguments

ClusterArn

[required] The Amazon Resource Name (ARN) that uniquely identifies the cluster.

Value

A list with the following syntax:

list(
  BootstrapBrokerString = "string",
  BootstrapBrokerStringTls = "string",
  BootstrapBrokerStringSaslScram = "string",
  BootstrapBrokerStringSaslIam = "string",
  BootstrapBrokerStringPublicTls = "string",
  BootstrapBrokerStringPublicSaslScram = "string",
  BootstrapBrokerStringPublicSaslIam = "string",
  BootstrapBrokerStringVpcConnectivityTls = "string",
  BootstrapBrokerStringVpcConnectivitySaslScram = "string",
  BootstrapBrokerStringVpcConnectivitySaslIam = "string"
)

Request syntax

svc$get_bootstrap_brokers(
  ClusterArn = "string"
)