AWS StepFuncton executionArn 格式

AWS StepFuncton executionArn format

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

我可以得到下面的executionArn吗?

stateMachineArn:name

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

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

状态机(名称='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"
}

希望对您有所帮助!