Combining `InputPath` and `Parameters` in AWS States LanguageAmazon SES example Perl script not working in raw -r mode using stdin under windowsUsing R's Digest Package to Sign an HTTP request to Amazon Dynamodb's APICan Cross Account Access EC2 Role be Created?How to reuse state definition across aws state machines?How to continue the execution a step function in aws if one of the states in a parallel state fails?Amazon States Language - Global and transaction cacheAWS State Machine that can “branch” into a different State Machine by ARNOutput Data in Wait State of Step FunctionParallel States Merge the output in Step Function
Why will we fail creating a self sustaining off world colony?
What specifically counts as "anything" in spell text?
A quine of sorts
ESTA Elegible after Qatar?
What election rules and voting rights are guaranteed by the US Constitution?
Journal standards vs. personal standards
The alcoholic village festival
How to track mail undetectably?
How useful would a hydroelectric power plant be in the post-apocalypse world?
Why would Dementors torture a Death Eater if they are loyal to Voldemort?
Does "boire un jus" tend to mean "coffee" or "juice of fruit"?
Customs and immigration on a USA-UK-Sweden flight itinerary
Is leaving out prefixes like "rauf", "rüber", "rein" when describing movement considered a big mistake in spoken German?
Calculus, water poured into a cone: Why is the derivative non-linear?
Why were the first airplanes "backwards"?
Where to connect the fuse and why?
Why doesn't SpaceX land boosters in Africa?
How soon after takeoff can you recline your airplane seat?
Fast method to cut/shred glue stick into small pieces
How do I keep a running total of data in a column in Excel?
In Kyrie Eleison, what does "derramo aos teus pes minha vida" mean?
Correct use of the the idiom 'Гнать/Катить бочку'
Is it OK to throw pebbles and stones in streams, waterfalls, ponds, etc.?
How do pure functions differ from functions defined with SetDelayed?
Combining `InputPath` and `Parameters` in AWS States Language
Amazon SES example Perl script not working in raw -r mode using stdin under windowsUsing R's Digest Package to Sign an HTTP request to Amazon Dynamodb's APICan Cross Account Access EC2 Role be Created?How to reuse state definition across aws state machines?How to continue the execution a step function in aws if one of the states in a parallel state fails?Amazon States Language - Global and transaction cacheAWS State Machine that can “branch” into a different State Machine by ARNOutput Data in Wait State of Step FunctionParallel States Merge the output in Step Function
The AWS States Language specification describes the role of the InputPath and Parameters fields but does not give an example of the filters being used together.
My understanding is that, if specified, the JSON path given by the InputPath field is applied to the raw input producing the effective input. Then, if specified, the value of the parameters field is applied, modifying the effective input.
Extending the example given in the spec, given the following Task state definition:
"X":
"Type": "Task",
"Resource": "arn:aws:swf:us-east-1:123456789012:task:X",
"Next": "Y",
"InputPath": "$.sub",
"Parameters":
"flagged": true,
"parts":
"first.$": "$.vals[0]",
"last3.$": "$.vals[3:]"
then, given the following input:
"flagged": 7,
"sub" :
"vals": [0, 10, 20, 30, 40, 50]
the effective input to the code identified in the Resource field would be:
"flagged": true,
"parts":
"first": 0,
"last3": [30, 40, 50]
Is my interpretation correct?
amazon-web-services aws-step-functions
add a comment |
The AWS States Language specification describes the role of the InputPath and Parameters fields but does not give an example of the filters being used together.
My understanding is that, if specified, the JSON path given by the InputPath field is applied to the raw input producing the effective input. Then, if specified, the value of the parameters field is applied, modifying the effective input.
Extending the example given in the spec, given the following Task state definition:
"X":
"Type": "Task",
"Resource": "arn:aws:swf:us-east-1:123456789012:task:X",
"Next": "Y",
"InputPath": "$.sub",
"Parameters":
"flagged": true,
"parts":
"first.$": "$.vals[0]",
"last3.$": "$.vals[3:]"
then, given the following input:
"flagged": 7,
"sub" :
"vals": [0, 10, 20, 30, 40, 50]
the effective input to the code identified in the Resource field would be:
"flagged": true,
"parts":
"first": 0,
"last3": [30, 40, 50]
Is my interpretation correct?
amazon-web-services aws-step-functions
add a comment |
The AWS States Language specification describes the role of the InputPath and Parameters fields but does not give an example of the filters being used together.
My understanding is that, if specified, the JSON path given by the InputPath field is applied to the raw input producing the effective input. Then, if specified, the value of the parameters field is applied, modifying the effective input.
Extending the example given in the spec, given the following Task state definition:
"X":
"Type": "Task",
"Resource": "arn:aws:swf:us-east-1:123456789012:task:X",
"Next": "Y",
"InputPath": "$.sub",
"Parameters":
"flagged": true,
"parts":
"first.$": "$.vals[0]",
"last3.$": "$.vals[3:]"
then, given the following input:
"flagged": 7,
"sub" :
"vals": [0, 10, 20, 30, 40, 50]
the effective input to the code identified in the Resource field would be:
"flagged": true,
"parts":
"first": 0,
"last3": [30, 40, 50]
Is my interpretation correct?
amazon-web-services aws-step-functions
The AWS States Language specification describes the role of the InputPath and Parameters fields but does not give an example of the filters being used together.
My understanding is that, if specified, the JSON path given by the InputPath field is applied to the raw input producing the effective input. Then, if specified, the value of the parameters field is applied, modifying the effective input.
Extending the example given in the spec, given the following Task state definition:
"X":
"Type": "Task",
"Resource": "arn:aws:swf:us-east-1:123456789012:task:X",
"Next": "Y",
"InputPath": "$.sub",
"Parameters":
"flagged": true,
"parts":
"first.$": "$.vals[0]",
"last3.$": "$.vals[3:]"
then, given the following input:
"flagged": 7,
"sub" :
"vals": [0, 10, 20, 30, 40, 50]
the effective input to the code identified in the Resource field would be:
"flagged": true,
"parts":
"first": 0,
"last3": [30, 40, 50]
Is my interpretation correct?
amazon-web-services aws-step-functions
amazon-web-services aws-step-functions
asked Mar 25 at 15:35
Michael ThomasMichael Thomas
7904 silver badges15 bronze badges
7904 silver badges15 bronze badges
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55341360%2fcombining-inputpath-and-parameters-in-aws-states-language%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55341360%2fcombining-inputpath-and-parameters-in-aws-states-language%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown