aws-cdk-lib.aws_lambda.CfnEventSourceMapping.AmazonManagedKafkaEventSourceConfigProperty

interface AmazonManagedKafkaEventSourceConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.Lambda.CfnEventSourceMapping.AmazonManagedKafkaEventSourceConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awslambda#CfnEventSourceMapping_AmazonManagedKafkaEventSourceConfigProperty
Javasoftware.amazon.awscdk.services.lambda.CfnEventSourceMapping.AmazonManagedKafkaEventSourceConfigProperty
Pythonaws_cdk.aws_lambda.CfnEventSourceMapping.AmazonManagedKafkaEventSourceConfigProperty
TypeScript aws-cdk-lib » aws_lambda » CfnEventSourceMapping » AmazonManagedKafkaEventSourceConfigProperty

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

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lambda as lambda } from 'aws-cdk-lib';
const amazonManagedKafkaEventSourceConfigProperty: lambda.CfnEventSourceMapping.AmazonManagedKafkaEventSourceConfigProperty = {
  consumerGroupId: 'consumerGroupId',
};

Properties

NameTypeDescription
consumerGroupId?stringThe identifier for the Kafka consumer group to join.

consumerGroupId?

Type: string (optional)

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 .