UNPKG

@aws-lambda-powertools/kafka

Version:

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

10 lines (9 loc) 151 B
/** * Types of Kafka schema formats. */ const SchemaType = { JSON: 'json', AVRO: 'avro', PROTOBUF: 'protobuf', }; export { SchemaType };