Show / Hide Table of Contents

Interface CfnEventSourceMapping.IAmazonManagedKafkaEventSourceConfigProperty

Specific configuration settings for an Amazon Managed Streaming for Apache Kafka (Amazon MSK) event source.

Namespace: Amazon.CDK.AWS.Lambda
Assembly: Amazon.CDK.AWS.Lambda.dll
Syntax (csharp)
public interface IAmazonManagedKafkaEventSourceConfigProperty
Syntax (vb)
Public Interface IAmazonManagedKafkaEventSourceConfigProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-amazonmanagedkafkaeventsourceconfig.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Lambda;

var amazonManagedKafkaEventSourceConfigProperty = new AmazonManagedKafkaEventSourceConfigProperty {
    ConsumerGroupId = "consumerGroupId"
};

Synopsis

Properties

ConsumerGroupId

The identifier for the Kafka consumer group to join.

Properties

ConsumerGroupId

The identifier for the Kafka consumer group to join.

virtual string ConsumerGroupId { get; }
Property Value

System.String

Remarks

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 .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-amazonmanagedkafkaeventsourceconfig.html#cfn-lambda-eventsourcemapping-amazonmanagedkafkaeventsourceconfig-consumergroupid

Back to top Generated by DocFX