memo.log

技術情報の雑なメモ

2022-11-21から1日間の記事一覧

Step FunctionsでMap内から子ステートマシンを実行する小さなサンプル

{ "Comment": "sample", "StartAt": "map", "States": { "map": { "Type": "Map", "ItemsPath": "$.numbers", "Iterator": { "StartAt": "start", "States": { "start": { "Type": "Task", "Resource": "arn:aws:states:::states:startExecution.sync", "Par…

Step FunctionsのMapの一番小さなサンプル

入力 { "numbers": [1, 2, 3] } 定義 { "Comment": "sample", "StartAt": "map", "States": { "map": { "Type": "Map", "ItemsPath": "$.numbers", "Iterator": { "StartAt": "start", "States": { "start": { "Type": "Pass", "End": true } } }, "Next": "…