Interface KafkaSchemaValidationConfig
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
KafkaSchemaValidationConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-24T13:34:41.295Z")
@Stability(Stable)
public interface KafkaSchemaValidationConfig
extends software.amazon.jsii.JsiiSerializable
Specific schema validation configuration settings that tell Lambda the message attributes you want to validate and filter using your schema registry.
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.*;
KafkaSchemaValidationAttribute kafkaSchemaValidationAttribute;
KafkaSchemaValidationConfig kafkaSchemaValidationConfig = KafkaSchemaValidationConfig.builder()
.attribute(kafkaSchemaValidationAttribute)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forKafkaSchemaValidationConfigstatic final classAn implementation forKafkaSchemaValidationConfig -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The attributes you want your schema registry to validate and filter for.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAttribute
The attributes you want your schema registry to validate and filter for.If you selected JSON as the EventRecordFormat, Lambda also deserializes the selected message attributes.
-
builder
-