Class: Aws::Lambda::Types::AmazonManagedKafkaEventSourceConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::AmazonManagedKafkaEventSourceConfig
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Specific configuration settings for an Amazon Managed Streaming for Apache Kafka (Amazon MSK) event source.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#consumer_group_id ⇒ String
The identifier for the Kafka consumer group to join.
-
#schema_registry_config ⇒ Types::KafkaSchemaRegistryConfig
Specific configuration settings for a Kafka schema registry.
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, see Customizable consumer group ID.
359 360 361 362 363 364 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 359 class AmazonManagedKafkaEventSourceConfig < Struct.new( :consumer_group_id, :schema_registry_config) SENSITIVE = [] include Aws::Structure end |
#schema_registry_config ⇒ Types::KafkaSchemaRegistryConfig
Specific configuration settings for a Kafka schema registry.
359 360 361 362 363 364 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 359 class AmazonManagedKafkaEventSourceConfig < Struct.new( :consumer_group_id, :schema_registry_config) SENSITIVE = [] include Aws::Structure end |