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 endpoints used by AWS Lambda to access a self-managed 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.*;
 EndpointsProperty endpointsProperty = EndpointsProperty.builder()
         .kafkaBootstrapServers(List.of("kafkaBootstrapServers"))
         .build();
 

See Also: