Class: Aws::Lambda::Types::SelfManagedEventSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::SelfManagedEventSource
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
Note:
When making an API call, you may pass SelfManagedEventSource data as a hash:
{
endpoints: {
"KAFKA_BOOTSTRAP_SERVERS" => ["Endpoint"],
},
}
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”]`.
5008 5009 5010 5011 5012 |
# File 'lib/aws-sdk-lambda/types.rb', line 5008 class SelfManagedEventSource < Struct.new( :endpoints) SENSITIVE = [] include Aws::Structure end |