Allow JSONata string expressions for Arguments in Step Functions#4403
Merged
kddejong merged 1 commit intoaws-cloudformation:mainfrom Mar 24, 2026
Merged
Allow JSONata string expressions for Arguments in Step Functions#4403kddejong merged 1 commit intoaws-cloudformation:mainfrom
kddejong merged 1 commit intoaws-cloudformation:mainfrom
Conversation
d993a1b to
89d2c80
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #4403 +/- ##
==========================================
- Coverage 93.54% 93.45% -0.10%
==========================================
Files 418 422 +4
Lines 14145 14325 +180
Branches 2817 2860 +43
==========================================
+ Hits 13232 13387 +155
- Misses 567 581 +14
- Partials 346 357 +11
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
89d2c80 to
2352317
Compare
When QueryLanguage is JSONata, Arguments can be a JSONata string expression that evaluates to a JSON object, not just a literal object. Fixes aws-cloudformation#4398
2352317 to
63308a5
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When QueryLanguage is JSONata, Arguments can be a JSONata string expression that evaluates to a JSON object, not just a literal object.
Per the States Language spec: The value of "Arguments" MUST be a JSON text, or a JSONata string that evaluates to a JSON text.
Fixes #4398