UNPKG

@aws-lambda-powertools/kafka

Version:

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

13 lines (12 loc) 267 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SchemaType = void 0; /** * Types of Kafka schema formats. */ const SchemaType = { JSON: 'json', AVRO: 'avro', PROTOBUF: 'protobuf', }; exports.SchemaType = SchemaType;