public static interface CfnEventSourceMapping.SelfManagedEventSourceProperty
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.lambda.*; SelfManagedEventSourceProperty selfManagedEventSourceProperty = SelfManagedEventSourceProperty.builder() .endpoints(EndpointsProperty.builder() .kafkaBootstrapServers(List.of("kafkaBootstrapServers")) .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnEventSourceMapping.SelfManagedEventSourceProperty.Builder
A builder for
CfnEventSourceMapping.SelfManagedEventSourceProperty |
static class |
CfnEventSourceMapping.SelfManagedEventSourceProperty.Jsii$Proxy
An implementation for
CfnEventSourceMapping.SelfManagedEventSourceProperty |
Modifier and Type | Method and Description |
---|---|
static CfnEventSourceMapping.SelfManagedEventSourceProperty.Builder |
builder() |
default java.lang.Object |
getEndpoints()
The list of bootstrap servers for your Kafka brokers in the following format: `"KafkaBootstrapServers": ["abc.xyz.com:xxxx","abc2.xyz.com:xxxx"]` .
|