Interface CfnEventSourceMapping.SelfManagedEventSourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEventSourceMapping.SelfManagedEventSourceProperty.Jsii$Proxy
- Enclosing class:
CfnEventSourceMapping
@Stability(Stable)
public static interface CfnEventSourceMapping.SelfManagedEventSourceProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.lambda.*;
SelfManagedEventSourceProperty selfManagedEventSourceProperty = SelfManagedEventSourceProperty.builder()
.endpoints(EndpointsProperty.builder()
.kafkaBootstrapServers(List.of("kafkaBootstrapServers"))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEventSourceMapping.SelfManagedEventSourcePropertystatic final classAn implementation forCfnEventSourceMapping.SelfManagedEventSourceProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEndpoints
The list of bootstrap servers for your Kafka brokers in the following format:"KafkaBootstrapServers": ["abc.xyz.com:xxxx","abc2.xyz.com:xxxx"].Returns union: either
IResolvableorCfnEventSourceMapping.EndpointsProperty- See Also:
-
builder
-