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













0















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?










share|improve this question


























    0















    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?










    share|improve this question
























      0












      0








      0








      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?










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 25 at 15:35









      Michael ThomasMichael Thomas

      7904 silver badges15 bronze badges




      7904 silver badges15 bronze badges




















          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
          );



          );













          draft saved

          draft discarded


















          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.



















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

          용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

          155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해