Class: Aws::Kafka::Types::GetBootstrapBrokersResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::GetBootstrapBrokersResponse
- Defined in:
- gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb
Overview
Returns a string containing one or more hostname:port pairs.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bootstrap_broker_string ⇒ String
A string containing one or more hostname:port pairs.
-
#bootstrap_broker_string_sasl_scram ⇒ String
A string containing one or more DNS names (or IP) and SASL SCRAM port pairs.
-
#bootstrap_broker_string_tls ⇒ String
A string containing one or more DNS names (or IP) and TLS port pairs.
Instance Attribute Details
#bootstrap_broker_string ⇒ String
A string containing one or more hostname:port pairs.
1477 1478 1479 1480 1481 1482 1483 |
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 1477 class GetBootstrapBrokersResponse < Struct.new( :bootstrap_broker_string, :bootstrap_broker_string_tls, :bootstrap_broker_string_sasl_scram) SENSITIVE = [] include Aws::Structure end |
#bootstrap_broker_string_sasl_scram ⇒ String
A string containing one or more DNS names (or IP) and SASL SCRAM port pairs. The following is an example.
1477 1478 1479 1480 1481 1482 1483 |
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 1477 class GetBootstrapBrokersResponse < Struct.new( :bootstrap_broker_string, :bootstrap_broker_string_tls, :bootstrap_broker_string_sasl_scram) SENSITIVE = [] include Aws::Structure end |
#bootstrap_broker_string_tls ⇒ String
A string containing one or more DNS names (or IP) and TLS port pairs. The following is an example.
1477 1478 1479 1480 1481 1482 1483 |
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 1477 class GetBootstrapBrokersResponse < Struct.new( :bootstrap_broker_string, :bootstrap_broker_string_tls, :bootstrap_broker_string_sasl_scram) SENSITIVE = [] include Aws::Structure end |