interface SelfManagedEventSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Lambda.CfnEventSourceMapping.SelfManagedEventSourceProperty |
Java | software.amazon.awscdk.services.lambda.CfnEventSourceMapping.SelfManagedEventSourceProperty |
Python | aws_cdk.aws_lambda.CfnEventSourceMapping.SelfManagedEventSourceProperty |
TypeScript | @aws-cdk/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 * as lambda from '@aws-cdk/aws-lambda';
const selfManagedEventSourceProperty: lambda.CfnEventSourceMapping.SelfManagedEventSourceProperty = {
endpoints: {
kafkaBootstrapServers: ['kafkaBootstrapServers'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| endpoints? | IResolvable | Endpoints | The list of bootstrap servers for your Kafka brokers in the following format: "KafkaBootstrapServers": ["abc.xyz.com:xxxx","abc2.xyz.com:xxxx"] . |
endpoints?
Type:
IResolvable | Endpoints
(optional)
The list of bootstrap servers for your Kafka brokers in the following format: "KafkaBootstrapServers": ["abc.xyz.com:xxxx","abc2.xyz.com:xxxx"] .

.NET
Java
Python
TypeScript