SelfManagedKafkaEventSourceConfig — AWS SDK for Ruby V3 (original) (raw)
Class: Aws::Lambda::Types::SelfManagedKafkaEventSourceConfig
Inherits:
Struct
- Object
- Struct
- Aws::Lambda::Types::SelfManagedKafkaEventSourceConfig show all
Defined in:
gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Specific configuration settings for a self-managed Apache Kafka event source.
Constant Summarycollapse
SENSITIVE =
[]
Instance Attribute Summary collapse
- #consumer_group_id ⇒ String
The identifier for the Kafka consumer group to join.
Instance Attribute Details
#consumer_group_id ⇒ String
The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. For more information, seeCustomizable consumer group ID.
6016 6017 6018 6019 6020 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 6016 class SelfManagedKafkaEventSourceConfig < Struct.new( :consumer_group_id) SENSITIVE = [] include Aws::Structure end |
---|