UNPKG

@aws-lambda-powertools/kafka

Version:

Utility to easily handle message deserialization and parsing of Kafka events in AWS Lambda functions

10 lines 224 B
/** * Types of Kafka schema formats. */ declare const SchemaType: { readonly JSON: "json"; readonly AVRO: "avro"; readonly PROTOBUF: "protobuf"; }; export { SchemaType }; //# sourceMappingURL=constants.d.ts.map