Interface CfnEventSourceMapping.SelfManagedKafkaEventSourceConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEventSourceMapping.SelfManagedKafkaEventSourceConfigProperty.Jsii$Proxy
Enclosing class:
CfnEventSourceMapping

@Stability(Stable) public static interface CfnEventSourceMapping.SelfManagedKafkaEventSourceConfigProperty extends software.amazon.jsii.JsiiSerializable
Specific configuration settings for a self-managed Apache Kafka 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.*;
 SelfManagedKafkaEventSourceConfigProperty selfManagedKafkaEventSourceConfigProperty = SelfManagedKafkaEventSourceConfigProperty.builder()
         .consumerGroupId("consumerGroupId")
         .schemaRegistryConfig(SchemaRegistryConfigProperty.builder()
                 .accessConfigs(List.of(SchemaRegistryAccessConfigProperty.builder()
                         .type("type")
                         .uri("uri")
                         .build()))
                 .eventRecordFormat("eventRecordFormat")
                 .schemaRegistryUri("schemaRegistryUri")
                 .schemaValidationConfigs(List.of(SchemaValidationConfigProperty.builder()
                         .attribute("attribute")
                         .build()))
                 .build())
         .build();
 

See Also: