Class: Aws::KafkaConnect::Types::KafkaCluster
- Inherits:
-
Struct
- Object
- Struct
- Aws::KafkaConnect::Types::KafkaCluster
- Defined in:
- gems/aws-sdk-kafkaconnect/lib/aws-sdk-kafkaconnect/types.rb
Overview
Note:
When making an API call, you may pass KafkaCluster data as a hash:
{
apache_kafka_cluster: { # required
bootstrap_servers: "__string", # required
vpc: { # required
security_groups: ["__string"],
subnets: ["__string"], # required
},
},
}
The details of the Apache Kafka cluster to which the connector is connected.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#apache_kafka_cluster ⇒ Types::ApacheKafkaCluster
The Apache Kafka cluster to which the connector is connected.
Instance Attribute Details
#apache_kafka_cluster ⇒ Types::ApacheKafkaCluster
The Apache Kafka cluster to which the connector is connected.
1373 1374 1375 1376 1377 |
# File 'gems/aws-sdk-kafkaconnect/lib/aws-sdk-kafkaconnect/types.rb', line 1373 class KafkaCluster < Struct.new( :apache_kafka_cluster) SENSITIVE = [] include Aws::Structure end |