aws_sdk_kafka/client/get_bootstrap_brokers.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`GetBootstrapBrokers`](crate::operation::get_bootstrap_brokers::builders::GetBootstrapBrokersFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`cluster_arn(impl Into<String>)`](crate::operation::get_bootstrap_brokers::builders::GetBootstrapBrokersFluentBuilder::cluster_arn) / [`set_cluster_arn(Option<String>)`](crate::operation::get_bootstrap_brokers::builders::GetBootstrapBrokersFluentBuilder::set_cluster_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) that uniquely identifies the cluster.</p><br>
7 /// - On success, responds with [`GetBootstrapBrokersOutput`](crate::operation::get_bootstrap_brokers::GetBootstrapBrokersOutput) with field(s):
8 /// - [`bootstrap_broker_string(Option<String>)`](crate::operation::get_bootstrap_brokers::GetBootstrapBrokersOutput::bootstrap_broker_string): <p>A string containing one or more hostname:port pairs.</p>
9 /// - [`bootstrap_broker_string_tls(Option<String>)`](crate::operation::get_bootstrap_brokers::GetBootstrapBrokersOutput::bootstrap_broker_string_tls): <p>A string containing one or more DNS names (or IP) and TLS port pairs.</p>
10 /// - [`bootstrap_broker_string_sasl_scram(Option<String>)`](crate::operation::get_bootstrap_brokers::GetBootstrapBrokersOutput::bootstrap_broker_string_sasl_scram): <p>A string containing one or more DNS names (or IP) and Sasl Scram port pairs.</p>
11 /// - [`bootstrap_broker_string_sasl_iam(Option<String>)`](crate::operation::get_bootstrap_brokers::GetBootstrapBrokersOutput::bootstrap_broker_string_sasl_iam): <p>A string that contains one or more DNS names (or IP addresses) and SASL IAM port pairs.</p>
12 /// - [`bootstrap_broker_string_public_tls(Option<String>)`](crate::operation::get_bootstrap_brokers::GetBootstrapBrokersOutput::bootstrap_broker_string_public_tls): <p>A string containing one or more DNS names (or IP) and TLS port pairs.</p>
13 /// - [`bootstrap_broker_string_public_sasl_scram(Option<String>)`](crate::operation::get_bootstrap_brokers::GetBootstrapBrokersOutput::bootstrap_broker_string_public_sasl_scram): <p>A string containing one or more DNS names (or IP) and Sasl Scram port pairs.</p>
14 /// - [`bootstrap_broker_string_public_sasl_iam(Option<String>)`](crate::operation::get_bootstrap_brokers::GetBootstrapBrokersOutput::bootstrap_broker_string_public_sasl_iam): <p>A string that contains one or more DNS names (or IP addresses) and SASL IAM port pairs.</p>
15 /// - [`bootstrap_broker_string_vpc_connectivity_tls(Option<String>)`](crate::operation::get_bootstrap_brokers::GetBootstrapBrokersOutput::bootstrap_broker_string_vpc_connectivity_tls): <p>A string containing one or more DNS names (or IP) and TLS port pairs for VPC connectivity.</p>
16 /// - [`bootstrap_broker_string_vpc_connectivity_sasl_scram(Option<String>)`](crate::operation::get_bootstrap_brokers::GetBootstrapBrokersOutput::bootstrap_broker_string_vpc_connectivity_sasl_scram): <p>A string containing one or more DNS names (or IP) and SASL/SCRAM port pairs for VPC connectivity.</p>
17 /// - [`bootstrap_broker_string_vpc_connectivity_sasl_iam(Option<String>)`](crate::operation::get_bootstrap_brokers::GetBootstrapBrokersOutput::bootstrap_broker_string_vpc_connectivity_sasl_iam): <p>A string containing one or more DNS names (or IP) and SASL/IAM port pairs for VPC connectivity.</p>
18 /// - On failure, responds with [`SdkError<GetBootstrapBrokersError>`](crate::operation::get_bootstrap_brokers::GetBootstrapBrokersError)
19 pub fn get_bootstrap_brokers(&self) -> crate::operation::get_bootstrap_brokers::builders::GetBootstrapBrokersFluentBuilder {
20 crate::operation::get_bootstrap_brokers::builders::GetBootstrapBrokersFluentBuilder::new(self.handle.clone())
21 }
22}