1

如果我运行StartExecution指定可选参数name(执行的名称。)

我可以得到executionArn如下吗?

stateMachineArn:name

我知道我可以得到 theexecutionArn的响应,StartExecution但我想将executionArn作为输入传递给我的执行。

4

1 回答 1

1

这绝对可以使用名称字段。我在下面有一个例子来展示如何做到这一点:

状态机(名称='Helloworld-test'):

{
  "Comment": "A Hello World example of the Amazon States Language using a Pass state",
  "StartAt": "HelloWorld",
  "States": {
    "HelloWorld": {
      "Type": "Pass",
      "End": true
    }
  }
}

执行名称:

exsname

执行输入(您可以在此处构建):

{
  "arn": "arn:aws:states:us-east-1:195788859115:execution:Helloworld-test:exsname"
}

执行的输出:

{
  "arn": "arn:aws:states:us-east-1:195788859115:execution:Helloworld-test:exsname"
}

希望这可以帮助!

于 2018-02-02T23:29:03.927 回答