aws-cdk-lib.aws_lambda.CfnEventSourceMapping.SelfManagedEventSourceProperty

interface SelfManagedEventSourceProperty

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

The self-managed Apache Kafka cluster for your 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 selfManagedEventSourceProperty: lambda.CfnEventSourceMapping.SelfManagedEventSourceProperty = {
  endpoints: {
    kafkaBootstrapServers: ['kafkaBootstrapServers'],
  },
};

Properties

NameTypeDescription
endpoints?IResolvable | EndpointsPropertyThe list of bootstrap servers for your Kafka brokers in the following format: "KafkaBootstrapServers": ["abc.xyz.com:xxxx","abc2.xyz.com:xxxx"] .

endpoints?

Type: IResolvable | EndpointsProperty (optional)

The list of bootstrap servers for your Kafka brokers in the following format: "KafkaBootstrapServers": ["abc.xyz.com:xxxx","abc2.xyz.com:xxxx"] .