We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
see #1484
When using a Kafka event source either from self-managed Apache Kafka or Amazon MSK there should be a relevant data class for easy iteration/decoding.
Such functionality is implemented already in aws-lambda-go and in aws-lambda-java-libs.
@event_parser(model=MyALambdaKafkaBusiness, envelope=envelopes.KafkaEnvelope) def handle_lambda_kafka_with_envelope(event: List[MyALambdaKafkaBusiness], _: LambdaContext): assert event[0].key == "value" assert len(event) == 1 @event_parser(model=KafkaEventModel) def handle_kafka_event(event: KafkaEventModel, _: LambdaContext): return event
No response
The text was updated successfully, but these errors were encountered:
This is now released under 1.29.0 version!
Sorry, something went wrong.
This is now released under 1.29.1 version!
No branches or pull requests
Use case
see #1484
When using a Kafka event source either from self-managed Apache Kafka or Amazon MSK there should be a relevant data class for easy iteration/decoding.
Such functionality is implemented already in aws-lambda-go and in aws-lambda-java-libs.
Solution/User Experience
Alternative solutions
No response
Acknowledgment
The text was updated successfully, but these errors were encountered: