Class: Aws::Lambda::Types::SelfManagedEventSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::SelfManagedEventSource
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
The self-managed Apache Kafka cluster for your event source.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#endpoints ⇒ Hash<String,Array<String>>
The list of bootstrap servers for your Kafka brokers in the following format:
"KAFKA_BOOTSTRAP_SERVERS": ["abc.xyz.com:xxxx","abc2.xyz.com:xxxx"]
.
Instance Attribute Details
#endpoints ⇒ Hash<String,Array<String>>
The list of bootstrap servers for your Kafka brokers in the
following format: "KAFKA_BOOTSTRAP_SERVERS":
["abc.xyz.com:xxxx","abc2.xyz.com:xxxx"]
.
5991 5992 5993 5994 5995 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 5991 class SelfManagedEventSource < Struct.new( :endpoints) SENSITIVE = [] include Aws::Structure end |