-
Notifications
You must be signed in to change notification settings - Fork 417
New issue
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
feat(parser): add AppSyncResolver model #6400
feat(parser): add AppSyncResolver model #6400
Conversation
Thanks a lot for your first contribution! Please check out our contributing guidelines and don't hesitate to ask whatever you need. |
@leandrodamascena, I have completed the issue #6111 in this PR, I have followed the guidelines of code completly to the best of my knowledge, as this was my first PR for the Powertools in Python, if anything is missing or needs changes please let me know. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #6400 +/- ##
===========================================
+ Coverage 96.31% 96.33% +0.01%
===========================================
Files 242 243 +1
Lines 11711 11758 +47
Branches 871 871
===========================================
+ Hits 11280 11327 +47
Misses 337 337
Partials 94 94 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @VatsalGoel3! Thanks a lot for this PR! I just left a small comment and after that we are ready to merge.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @VatsalGoel3! Just a little small change and it's ready to merge.
@leandrodamascena, I made the changes |
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you so much for working on this and resolving all the issues in this PR @VatsalGoel3!
Another super cool contribution to Powertools! Approved
Awesome work, congrats on your first merged pull request and thank you for helping improve everyone's experience! |
Issue number: #6111
Summary
Changes
This PR introduces a new built-in model
AppSyncResolverEventModel
for the Parser utility in Powertools for AWS Lambda (Python), enabling structured parsing and validation of AWS AppSync Resolver events using Pydantic. The schema supports fields such asarguments
,identity
,source
,request
,info
,prev
, andstash
, covering all standard AppSync resolver context attributes.Additionally:
aws_lambda_powertools.utilities.parser.models
.User experience
Before:
Users had to manually define models for AppSync Resolver events or rely on loosely-typed parsing.
After:
Users can now simply use the built-in
AppSyncResolverEventModel
to validate and parse incoming AppSync event payloads with full type safety and field coverage using Pydantic.Checklist
If your change doesn't seem to apply, please leave them unchecked.
Is this a breaking change?
RFC issue number: N/A
Checklist:
Acknowledgment
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
Disclaimer: We value your time and bandwidth. As such, any pull requests created on non-triaged issues might not be successful.