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